-- MySQL dump 10.13  Distrib 5.6.37, for Linux (x86_64)
--
-- Host: localhost    Database: avidwe5_rastech
-- ------------------------------------------------------
-- Server version	5.6.37-log

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

DROP TABLE IF EXISTS `wpiq_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_booking` (
  `booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `trash` bigint(10) NOT NULL DEFAULT '0',
  `sync_gid` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `is_new` bigint(10) NOT NULL DEFAULT '1',
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sort_date` datetime DEFAULT NULL,
  `modification_date` datetime DEFAULT NULL,
  `form` text COLLATE utf8mb4_unicode_520_ci,
  `booking_type` bigint(10) NOT NULL DEFAULT '1',
  PRIMARY KEY (`booking_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_booking`
--

LOCK TABLES `wpiq_booking` WRITE;
/*!40000 ALTER TABLE `wpiq_booking` DISABLE KEYS */;
INSERT INTO `wpiq_booking` VALUES (1,1,'',1,'','2017-10-06 00:00:00','2017-10-04 08:55:30','text^name1^Jony~text^secondname1^Smith~text^email1^example-free@wpbookingcalendar.com~text^phone1^458-77-77~textarea^details1^Reserve a room with sea view',1),(2,0,'',1,'','2017-10-05 00:00:00','2017-10-04 22:26:20','text^name1^Matthew~text^secondname1^Rasbury~email^email1^m.rasbury@rasburytech.com~text^phone1^2607107710~textarea^details1^Web Services',1);
/*!40000 ALTER TABLE `wpiq_booking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_bookingdates`
--

DROP TABLE IF EXISTS `wpiq_bookingdates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_bookingdates` (
  `booking_id` bigint(20) unsigned NOT NULL,
  `booking_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `approved` bigint(20) unsigned NOT NULL DEFAULT '0',
  UNIQUE KEY `booking_id_dates` (`booking_id`,`booking_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_bookingdates`
--

LOCK TABLES `wpiq_bookingdates` WRITE;
/*!40000 ALTER TABLE `wpiq_bookingdates` DISABLE KEYS */;
INSERT INTO `wpiq_bookingdates` VALUES (1,'2017-10-06 00:00:00',0),(1,'2017-10-07 00:00:00',0),(1,'2017-10-08 00:00:00',0),(2,'2017-10-05 00:00:00',0);
/*!40000 ALTER TABLE `wpiq_bookingdates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_cip_logs`
--

DROP TABLE IF EXISTS `wpiq_cip_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_cip_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post` varchar(255) NOT NULL,
  `message` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_cip_logs`
--

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

--
-- Table structure for table `wpiq_cip_rules`
--

DROP TABLE IF EXISTS `wpiq_cip_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_cip_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `country_id` varchar(255) NOT NULL,
  `target_url` varchar(255) NOT NULL,
  `cat_id` int(10) NOT NULL,
  `post_id` int(10) NOT NULL,
  `home_rule` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_cip_rules`
--

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

--
-- Table structure for table `wpiq_commentmeta`
--

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

--
-- Dumping data for table `wpiq_commentmeta`
--

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

--
-- Table structure for table `wpiq_comments`
--

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

--
-- Dumping data for table `wpiq_comments`
--

LOCK TABLES `wpiq_comments` WRITE;
/*!40000 ALTER TABLE `wpiq_comments` DISABLE KEYS */;
INSERT INTO `wpiq_comments` VALUES (3,199,'financial planning help','ibwvlswoa@gmail.com','http://financepoints.eu','178.162.205.30','2017-04-09 22:15:20','2017-04-10 03:15:20','Your way of explaining all in this piece of writing is really fastidious, all be capable of effortlessly be aware of it, Thanks a lot.',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',0,0);
/*!40000 ALTER TABLE `wpiq_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_ea_error_logs`
--

DROP TABLE IF EXISTS `wpiq_ea_error_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_ea_error_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `error_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `errors` text COLLATE utf8mb4_unicode_520_ci,
  `errors_data` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_ea_error_logs`
--

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

--
-- Table structure for table `wpiq_ip_geo_block_cache`
--

DROP TABLE IF EXISTS `wpiq_ip_geo_block_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_ip_geo_block_cache` (
  `No` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL DEFAULT '0',
  `ip` varchar(40) NOT NULL,
  `asn` varchar(8) DEFAULT NULL,
  `hook` varchar(8) NOT NULL,
  `auth` int(10) unsigned NOT NULL DEFAULT '0',
  `code` varchar(2) NOT NULL DEFAULT 'ZZ',
  `fail` int(10) unsigned NOT NULL DEFAULT '0',
  `call` int(10) unsigned NOT NULL DEFAULT '0',
  `host` tinytext NOT NULL,
  PRIMARY KEY (`No`),
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_ip_geo_block_cache`
--

LOCK TABLES `wpiq_ip_geo_block_cache` WRITE;
/*!40000 ALTER TABLE `wpiq_ip_geo_block_cache` DISABLE KEYS */;
INSERT INTO `wpiq_ip_geo_block_cache` VALUES (110,1507075817,'166.137.90.76','','admin',1,'US',0,153,''),(111,1507073399,'205.134.238.163','','admin',0,'US',0,2,'');
/*!40000 ALTER TABLE `wpiq_ip_geo_block_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_ip_geo_block_logs`
--

DROP TABLE IF EXISTS `wpiq_ip_geo_block_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_ip_geo_block_logs` (
  `No` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL DEFAULT '0',
  `ip` varchar(40) NOT NULL,
  `asn` varchar(8) DEFAULT NULL,
  `hook` varchar(8) NOT NULL,
  `auth` int(10) unsigned NOT NULL DEFAULT '0',
  `code` varchar(2) NOT NULL DEFAULT 'ZZ',
  `result` varchar(8) DEFAULT NULL,
  `method` varchar(255) NOT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `headers` varchar(511) DEFAULT NULL,
  `data` text,
  PRIMARY KEY (`No`),
  KEY `time` (`time`),
  KEY `hook` (`hook`)
) ENGINE=MyISAM AUTO_INCREMENT=174 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_ip_geo_block_logs`
--

LOCK TABLES `wpiq_ip_geo_block_logs` WRITE;
/*!40000 ALTER TABLE `wpiq_ip_geo_block_logs` DISABLE KEYS */;
INSERT INTO `wpiq_ip_geo_block_logs` VALUES (169,1506848238,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/includes/index.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','bot'),(173,1507056624,'200.204.167.121','','xmlrpc',0,'BR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(170,1506929132,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/includes/wp-cods.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','four'),(3,1491856910,'189.33.237.86',NULL,'login',0,'BR','blocked','GET[80]:/login/?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/',''),(4,1491856912,'189.33.237.86',NULL,'login',0,'BR','blocked','GET[80]:/login/?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/login/?action=register',''),(5,1491956938,'114.44.211.82',NULL,'login',0,'TW','blocked','GET[80]:/login/?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/',''),(6,1491956938,'114.44.211.82',NULL,'login',0,'TW','blocked','GET[80]:/login/?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/login/?action=register',''),(7,1491956940,'114.44.211.82',NULL,'xmlrpc',0,'TW','blocked','POST[80]:/xmlrpc.php','PHP/5.2.88','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/','<?xml version=\"1.0\" encoding=\"utf-16\" standalone=\"yes\"?><methodCall><methodName>pingback.ping</methodName><params><param><value><string>http://khoneyekhoda.mihanblog.com/post/177</string></value></param><param><value><string>http://www.rasburytech.com/web…'),(8,1491956941,'114.44.211.82',NULL,'xmlrpc',0,'TW','blocked','POST[80]:/xmlrpc.php','PHP/5.2.88','HTTP_DNT=1,HTTP_REFERER=http://www.rasburytech.com/','<?xml version=\"1.0\" encoding=\"utf-16\" standalone=\"yes\"?><methodCall><methodName>pingback.ping</methodName><params><param><value><string>http://khoneyekhoda.mihanblog.com/post/177</string></value></param><param><value><string>http://www.rasburytech.com/web…'),(171,1506998005,'91.205.173.48','','admin',0,'DE','blocked','POST[80]:/wp-admin/includes/rnnvhs.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','coco'),(172,1506998547,'91.205.173.48','','admin',0,'DE','blocked','POST[80]:/wp-admin/includes/lock46.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','OylrQ'),(11,1492008912,'83.206.17.236',NULL,'admin',0,'FR','blocked','GET[80]:/wp-admin/plugin-install.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','HTTP_UPGRADE_INSECURE_REQUESTS=1',''),(12,1492019593,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=97a442639c&ip-geo-block-auth-nonce=1290a291be','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=395&action=edit&ip-geo-block-auth-nonce=1290a291be,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(13,1492019594,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=97a442639c&ip-geo-block-auth-nonce=1290a291be','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=395&action=edit&ip-geo-block-auth-nonce=1290a291be,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(14,1492049000,'188.32.238.213',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=directstripelogs','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1389.R9SGWpMhJuKHGMAgwtgnEvOd_j3RGF-6WA9eyPtTRbME33TolnZKxVxSHzMO87tQ.9b533a13e1da3a3a2d65eef6765ea24e4c000ab5&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(15,1492049000,'176.194.48.141',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/5.0 (Windows NT 5.1; rv:2.0) Gecko/20100101 Firefox/4.0','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1389.KxVfzMqBg5f6YMuhsZd8pJvRKGif4Lsd89KrhzXjNvBj75Dc-XI3gjuIGuO9T1M8.d0ca99b5d8d8ebf0faaeede262b34b58d5a57e89&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(16,1492075669,'176.195.125.163',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1390.Cai7n6jhFuvH9OSiqdRO5ffFba6j-ukdWFZ28qt333b_w-4DOSS1lkBHRMZcjlfj.c80a6f6da2c6609cd38259bdf93d9ac66122c993&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(17,1492095723,'37.204.43.138',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/admin.php?page=direct_stripe&tab=styles','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MAAU; MAAU)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1390.505FR8tPUvCbk9Bdypp0UxlaW7zeyckDxC_SBTMncCwKsycEXThr-YPU_vBKN3aY.4e4852e9b38978c5a7aa38c9373e0df3afd632d6&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(18,1492150448,'37.204.34.146',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1391.hLQEFG0WPtFZK7QNyH11GX8KqtUMjZUDB-FXTGwvqgAuc9EmghW47OsLSOmfTdu6.7ed1230bdc9a389de60739efc657b194c6e648e6&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(19,1492155529,'77.41.92.28',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 YaBrowser/13.10.1500.9323 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1391.O7oHmtSnhgBgE3STK0Bl-MEdFfhoeTlSA7_pjOsivbH-2scwWQeaDIoEim3uxa2I.e3ecbc5bd0e91956f4eff762057b5ac0ab29e5bc&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(20,1492198219,'109.63.192.86',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/admin.php?page=direct_stripe&tab=styles','Mozilla/5.0 (Windows NT 5.1; rv:25.0) Gecko/20100101 Firefox/25.0 YB/7.7.1','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1391.pjKQxOzbpzwXcc-8vpObQjCuNx7UeMSlqWP3isgRS2BeUAMfzgVmWUY3xqnXnFK1.d4d15d347411dbb60c4738e99087cd365060fc45&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(21,1492207499,'109.63.201.144',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1391.CZsA8Uy01CDFseZcVyvnZjY00jAAAPXr4EsRiURygToqXRJPSfxgQtc3tk4uAi8b.d8872dba8e7c5f133aa17eb9fcfe311871d27da7&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(22,1492209415,'5.228.21.40',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugin-install.php?s=company%20features&tab=search&type=term','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1391.n9u9PcsUj-VmdtrGmFT8psMOKpCGXJt3X0XHht13DTXp9uTgX0Ph9jpJhldH2IiW.b5e8daf5ffeded2211a81a1d84fe6c36e1347581&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(23,1492222336,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(24,1492255156,'176.195.98.156',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugins.php?plugin_status=all&paged=1&s','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1392.wWZvuF1RVrbaiciwMezjse14HBPflyCjeRNHsz5sUYhTNWlsODfz9e0CArXQqBl4.2ef7a6dd7f3d8a857c72306da8bbccdc45176876&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(25,1492255156,'46.242.71.26',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1392.NH-ZqaOs9HOd_4zltoos_7GflP0hOrym7Ng3oBfZYvjTRGz4VPUoXjsp7GjKL11B.37631569e48f9a52200b54286f1de2b83fc09a9d&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(26,1492288094,'5.228.112.247',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0; MDDCJS)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1392.BOuAjxOmgaicGQZPJ9y-tYwqJWLQ107N69m1GkxYThljGB6sZ8uclMsR64Vz_Lf7.2328a05a78c30262445a49a78a67f8ec4b636d07&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(27,1492331767,'95.221.50.5',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MALNJS)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1393.nOmaP3pmFBgwHUHWgecSxwte8r1aStjhqgZ5MkWx8LMHCYZ_qZ5yuT6H_IadyeeH.2ffc70a65e44b4911c66e18272e06fed08fdfc6c&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(28,1492372584,'176.195.153.31',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugin-install.php?s=company%20features&tab=search&type=term','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1393.XxWvHGRX97qF47Teva3ErZwmhJGbxYo4s9McKVazbjFPp9KsM3HCwypgjYKzJeoi.7e9eb17767921c686f2a2256c5dbcccb3212fcc5&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(29,1492445869,'109.63.167.252',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1394.APDDOV7xZspE-povzV3VADVIq8NtyP3uvu_1JnwZhnFBuUwIjwNBaqTniENvLqV9.294e21c3f1350487f1a5ae20121dd2930b0279d9&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(30,1492445869,'109.63.186.43',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugins.php?plugin_status=all&paged=1&s','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1394.wB_vmmeAp4dHIa-l_VxBwwWgFLklbYVUrPYUviJxHxIkAX5aVyUI_UqFTp07nnsb.bd489748d569f3fbc3a4f9e9946fe21d5bbf6843&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(31,1492476228,'178.155.5.158',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1394.HiRbxVvJNjzre8MrTnSRQBsTMgp_89uAthfF6ky0mZu85rQ44I7UQjX-wA1DpvTb.8cbf02a80d9baebe2397ef4f4552ac5cc4262c72&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(32,1492487349,'109.63.157.63',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1394.OTpy9pt3CjTPS4jsO_koK09SDCczi-0tqzVXzh_5SyKUq_dNo4LF6nQWEdyRNort.ef62e64705f642e42888f7ac15b9ec55a34da53b&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(33,1492487350,'46.188.29.159',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugins.php?plugin_status=all&paged=1&s','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1394.NBDP-e-f85gBlN5NY6pCR6hzhq_KIFnQ1VOINyfm_nNJHFQyntoa02rT_-EavZPV.c6ba02574cce327910176e5e0377b6c5a34fa084&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(34,1492513873,'188.244.46.138',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/admin.php?page=direct_stripe&ip-geo-block-auth-nonce=e64c461e64','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1395.UxUplHn99VcoYZdRiZcVFSO8VJxKowf0MrKxaNbFo1f1UgTlIFAgJhTpM89KhZPm.5891fec5b5846260fcc0e99d9e5407fc98040162&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(35,1492513879,'94.180.146.90',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/options-general.php?page=wp-simple-mail-sender&ip-geo-block-auth-nonce=e64c461e64','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1395.HBZa6pjyD0Y80u1XptWYnANhiBv9g5EIBPdL--WXAN2DcUvvJu33jCkt6izLir2E.f0e7da4f5d7cdf084d63fcae9d02396ac7e92f08&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(36,1492513882,'188.32.7.34',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=258&action=edit&ip-geo-block-auth-nonce=1290a291be','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1395.Wks4HR07U0tJQJ3HSeWAgnF8U1opnDY0WY-VEVUql6ac-Jhrl8KQo7fI8Pp2yZ2G.f07ffc1c8d7274cd69a2722e55fcae3fbecc2921&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(37,1492600848,'79.164.128.29',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/edit.php?post_type=page','Mozilla/5.0 (Windows NT 5.1; rv:25.0) Gecko/20100101 Firefox/25.0','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1396.FNaXaCEaktuM850Uo75lc-2ib4qM1JaSZRAY3hs8XoOOCHPP-LMQLDVl2CJXDLPn.92dd5d39f0740e5b984a909ace79fc37ee7ce6f0&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(38,1492600848,'188.32.7.27',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/plugins.php?plugin_status=all&paged=1&s','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1396.hvZrRkv8h2Z2z7EZ5L0AzllA4jlRMsbKS_lCzrKssX_lIg7ninjZIour6CNdNWPe.056d85e54a75f773dff5a9c2b9b99ae152d03207&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(39,1492643125,'188.255.16.161',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/admin.php?page=direct_stripe&ip-geo-block-auth-nonce=e64c461e64','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1396.Vo4JQbWbjTSdYBoW626J88G5nB3cZ3195vUvP1APl2O9j0gbuwu2mnvELGzewD3r.3da78ab516a774d5a6a0501d3aea5a599fe4c191&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(40,1492643125,'109.63.130.53',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/options-general.php?page=wp-simple-mail-sender&ip-geo-block-auth-nonce=e64c461e64','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1396.qgI64IqU4piVKILDNfypOl8m4pQYFh2Zl9CZBovVMDsT2O2Yioz-5i5ZXWfq9SH3.65bcbd7e2431fd37d188926acabca80ff137684f&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(41,1492643126,'128.69.158.170',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=258&action=edit&ip-geo-block-auth-nonce=1290a291be','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1396.I5kUefYD2aqodURQqmPY5Lv865Z-2Mmv0g9t-B1STjlsg7ipW1-2R-veG-bFIerv.8661abbff9552cf9637ecdcc256b97160416d071&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(42,1492971556,'176.195.111.67',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=4&action=edit','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1400.KlwAFRvTXggrDR4Ig1IrjLpzois8z3ZqBHXVZOW9trBG59DuZm6iTDXNX-s9SnAA.bd334c68211d3bef9026dbda9c27d8c8c576f0cd&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(43,1493001669,'176.15.181.64',NULL,'login',0,'RU','blocked','GET[80]:/login/','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1400.TSVRna6YcbM7fhF-bY2uczg_M5TO5RWkmetPWLPEa1mu1FM24xwi2o0XJ_cQljo2.bd3c8edb018ea8a392be1b5e229750fc4ccc50c3&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(44,1493001681,'176.195.115.175',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1400.C0l4NEGEHMuw6rRT3fdTlTiRWuiakTOl0g2WWfNpRqpzz5y6EaditHmFNCAX-Qle.4b3b807e511410681bf4310fc64c2710b0a76e09&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(45,1493001683,'5.228.128.154',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=84&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1400.CeN-BPorpCNdR72Xq2VaGHSVw9sljRFyA4cYyngKLOS5On67udnsL7Xr_cQ2siHy.3952fad5d0c0b434929ead0dff2b31aec59f0563&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(46,1493107155,'176.192.192.201',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=78&action=edit','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402.AZ5DYFQvOs9rlLAn2PRGy1cKi9-Rr8TLIuFc7C9MzBNX2fQm-C7UbPO5DNMHuMsv.f5dfa8397263017b71bd7a2848967d8ad80942b7&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(47,1493133703,'178.140.84.249',NULL,'login',0,'RU','blocked','GET[80]:/login/','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402._1Vl_NXbqDCdCAPB0iieWLXiaKhhK5IEtar7qNGqzBklwA1_9S_4bH_5nYcMysM0.66844c9ff453fede26d86c1aeafc1a578bb1ef21&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(48,1493133705,'176.195.100.137',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (Windows NT 6.1; rv:25.0) Gecko/20100101 Firefox/25.0 YB/7.7.1','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402.cBPOMEtVLFWTCNNKhYzZEalshkG-9Jcl5GotShJPbY43pAGA614DMd2soJeI09Cu.e4ce9a2ea6f5c8a8e127c57f934bde20e6dd99d8&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(49,1493133708,'109.63.145.89',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=84&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 YaBrowser/13.10.1500.9323 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402.aECnBFejS45OLDsQpj-Ub6qY-Rm8B-LJOlelvlK8croD-gBW43SLAXgTaTEqMuTx.62777e9c90df62b89b5fe6b187de954fbc566bc6&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(50,1493137415,'188.32.237.217',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=4&action=edit','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.15','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402.6XTuSi7_oeR70BbeyfQgZ6uSig3FKRl0IHRYOtTaNjdG_YDzWF2KfgoegIubVT4U.37c15462fe4290c13d3acb16243e62509d86742d&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(51,1493176606,'95.24.29.13',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=4&action=edit','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1402.dgqYsNJzv-bGQ0QAAYPAw_AqcsPLBOBlhU8SOI_7nNnrm_1QqgCynOt8-n0GmAa_.62a3a068ca01455551b9cecf12c6e457e1713db0&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(52,1493191719,'95.28.185.134',NULL,'login',0,'RU','blocked','GET[80]:/login/','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0; Touch; MASEJS)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1403.fz2u4Cgq04Sk_8-x81qQ0A7AYn1EfY8_gtF19vaQthAXTDLHsH7cvsnZ6Jf2iViO.95bdb853f387d3fae8968f379e21487e8afc120b&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(53,1493191723,'128.69.222.36',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=84&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch; MALNJS)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1403.waNgkukIyaZcbOA61jUioxw2gQmxbZ9R-TE1Ak5DcYRiqY2bSLkE-UzbU_qvMvR1.12fa59e847175c6a20103e267d4fb93c8ba4cb65&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(54,1493191722,'176.195.121.175',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MDDCJS)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1403.p8UkCccNIat7u_3rgONLZ4bGuBwqhqakceD78LIJrA0jt86N-8jVYGNOj-oeLOa-.daf4fc585428bce090e0ffad8fa59f513ee73897&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(55,1493220828,'176.195.127.69',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=78&action=edit','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1403.lihqcxbqwZh8qDQwy-AKiSuVKwRA1pNPgwpS2jzNQ0awne1ZFOVEkMxqCyHyENcl.a6b3fc396fc47b02cc62a05479adb5e27eb48151&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(56,1493310930,'37.204.50.137',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=78&action=edit','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1404.QPjWuOO053WdukptzGtKEEgXg6aRSFZ1dCJVwOfHidIJAynCDMOKXAJM5_FfFsO0.d16c845474d2c83002857a395a0e5350e884d4d0&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(57,1493403471,'176.195.220.51',NULL,'login',0,'RU','blocked','GET[80]:/login/','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1405.WupHEy7aS3XPkcwzfaGNbIIPqm1h4rMR2jqFEEw3q7zUdhMLM83sqnRPqtV4d-qU.0c43e88f2baa6619ba742f37a49e02a895bbec51&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(58,1493403472,'109.63.136.16',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=84&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 YaBrowser/13.10.1500.9323 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1405.Svu6HOSQTKckAEGBFNwEKmg_R8-ewNBsgrSqwuZSE14yG5fU6BqGDH7sTbh9499D.8605fb56156d98184d4d29021764bfc61fdbcdd9&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(59,1493403471,'95.28.166.167',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=3bfb802825','Mozilla/5.0 (Windows NT 6.1; rv:25.0) Gecko/20100101 Firefox/25.0 YB/7.7.1','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1405.wBV6tuCU0y2S78egpHeSJGlVz1R1Mb9aTwSpyn1rGB6w_3A4vCmIsAKaSqDwoyzW.9dae56703f606d91ef3e4d1113fbd863867fa2ef&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(60,1493641359,'176.195.221.0',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=4660be9fcb','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1408.HrHnek9fWJaikBmcWOzlZaUUCHxYoeRv23LfWXor4SYhQWsSVz1_Q8ArWVIlT6vp.946530c13a7e4cbcdcd6c4c10634f323c24be9e8&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(61,1493641364,'176.195.121.30',NULL,'login',0,'RU','blocked','GET[80]:/login/?redirect_to=http%3A%2F%2Fwww.rasburytech.com%2Fwp-admin%2Fcustomize.php%3Freturn%3D%2Fwp-admin%2Fedit.php%3Fpost_type%3Dpage%26ip-geo-block-auth-nonce%3D4660be9fcb%26ip-geo-block-auth-nonce%3D4660be9fcb&reauth=1&ip-geo-block-auth-nonce=466','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1408.m0H1PhLFNbrHUubmkqdG61LkAOynMXyPpC742lIOc2MhCVrseKNta76_OfnjswzF.5b3addab32e1feb77694517540bfa89c4792f371&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(62,1493862515,'176.195.112.80',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=81&action=edit&ip-geo-block-auth-nonce=4660be9fcb','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1410.7nuNYU5JjNzibeMF_6rUdo2-o0Zd8O_t-UCtS0KhTfDBQgSu-aljFv9yhXzzWmfs.f983621de2c32d3a2cf3093706ff10b15f29e63b&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(63,1493862528,'109.63.242.189',NULL,'login',0,'RU','blocked','GET[80]:/login/?redirect_to=http%3A%2F%2Fwww.rasburytech.com%2Fwp-admin%2Fcustomize.php%3Freturn%3D%2Fwp-admin%2Fedit.php%3Fpost_type%3Dpage%26ip-geo-block-auth-nonce%3D4660be9fcb%26ip-geo-block-auth-nonce%3D4660be9fcb&reauth=1&ip-geo-block-auth-nonce=466','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 YaBrowser/13.10.1500.9323 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1410.MM0hQk1MTNGSseBkLUk3-QJyg0WMzOwjvb-1HGDhQO6-oRORaBS5MRkpLAPS_pNx.d1e51066aff303f24f8513504879b77f5d0bdec6&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(64,1493918405,'176.195.115.195',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/post.php?post=4&action=edit','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.15','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1411.KXMWPzpFdnAaHFsN3N5vjm4ndhJlI2TnwbBN6fSy7Yqcz4HFN9r-ebT1yBIO8O1T.73c5f4deaa0442200db67c86b9d1ea8f7c38f853&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(65,1494502194,'91.210.145.224',NULL,'xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php',''),(66,1494502198,'91.210.145.224',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php','<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>wp.getUsersBlogs</methodName></methodCall>'),(67,1495518988,'201.18.18.173',NULL,'xmlrpc',0,'BR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(68,1495639473,'77.87.102.92',NULL,'admin',0,'RU','blocked','POST[80]:/wp-admin/includes/rnnvhs.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','HTTP_REFERER=http://rasburytech.com/wp-admin/includes/rnnvhs.php','coco'),(69,1495759993,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(70,1495759994,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(71,1495760223,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(72,1495760245,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,widget,instance,raw'),(73,1495760287,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(74,1495760299,'174.97.196.42',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=30affa506b&ip-geo-block-auth-nonce=6664684b35','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=6664684b35,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,widget,instance,raw'),(75,1495808398,'160.202.162.44',NULL,'xmlrpc',0,'KR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getCategories</string></value></member><member><name>params</name><value><array><d…'),(76,1495988986,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(77,1496023851,'95.221.59.76',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1435.mdJiZ79IcSujdzlg45Gw7jxCYabQfJtekyhCBPtXz-h0XOL9VDq0o5WQB57V5o9t.a6eb3d7b1af80b79c2c3592a9b42ecc424244b4a&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(78,1496069462,'37.147.116.71',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1436.1Fo_PXIB0bdvpeUnzpL2876gtZFnqGzgG9cgCW-Rvyq2vZGl_MjkrOs2QWrJOjSg.104c108652e759adbb7ea114d816bb4c8aed4f2c&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(79,1496142811,'2.92.35.126',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1437.02yBoHo1FI4NhC36jsdGFWv0Cb-iWysSUKLoJ-8ByMBSn-jOuhSgNS-dh2OMiq3s.9f1850ab1846cc80f595b687e9bc3ffdbad72da4&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(80,1496377554,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(81,1496740459,'46.147.118.191',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','HTTP_REFERER=http://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=1444.rJaDU0020ct9_uyt-hDR5IICKp2oS2bq9UXzx-aw3dOrHrddg6wC18p9JL5C57oL.65b59e4427e04134995fda1b100e4157114bf84d&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qe…',''),(82,1497226190,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=9472e113e2&ip-geo-block-auth-nonce=90b157bacf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=dac23d533a,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,widget,instance,raw'),(83,1497226642,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=9472e113e2&ip-geo-block-auth-nonce=90b157bacf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=dac23d533a,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(84,1497226655,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=9472e113e2&ip-geo-block-auth-nonce=90b157bacf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=dac23d533a,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(85,1497226657,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/admin-ajax.php?_panelsnonce=9472e113e2&ip-geo-block-auth-nonce=90b157bacf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/post.php?post=508&action=edit&ip-geo-block-auth-nonce=dac23d533a,HTTP_X_REQUESTED_WITH=XMLHttpRequest','action,panels_data,post_id'),(86,1497323333,'201.18.18.173',NULL,'xmlrpc',0,'BR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(87,1497434065,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(88,1497526182,'160.202.163.147',NULL,'xmlrpc',0,'KR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getCategories</string></value></member><member><name>params</name><value><array><d…'),(89,1497824958,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(90,1498711904,'103.68.164.33',NULL,'xmlrpc',0,'SG','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300',''),(91,1498711904,'103.68.164.33',NULL,'xmlrpc',0,'SG','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300',''),(92,1498711921,'103.68.164.33',NULL,'xmlrpc',0,'SG','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(93,1499735502,'91.210.144.129',NULL,'xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php',''),(94,1499737290,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(95,1499822946,'103.210.9.1',NULL,'admin',0,'PH','blocked','POST[80]:/wp-admin/includes/lock46.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','HTTP_REFERER=http://rasburytech.com/wp-admin/includes/lock46.php','OylrQ'),(96,1499874550,'172.78.237.21',NULL,'login',0,'US','failed','POST[80]:/login/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/login/?loggedout=true,HTTP_UPGRADE_INSECURE_REQUESTS=1','log,pwd,wp-submit,redirect_to,testcookie,wordfence_userDat'),(97,1499874572,'172.78.237.21',NULL,'login',0,'US','failed','POST[80]:/login/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/login/,HTTP_UPGRADE_INSECURE_REQUESTS=1','log,pwd,wp-submit,redirect_to,testcookie,wordfence_userDat'),(98,1499876335,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead%20Capture%20Pro%20-%20v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2FL','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead+Capture+Pro+-+v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fh…','string-locator-editor-content,_wpnonce,_wp_http_referer,string-locator-smart-edit,submit'),(99,1499876346,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead+Capture+Pro+-+v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2FLead+Capt','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead+Capture+Pro+-+v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fh…','string-locator-editor-content,_wpnonce,_wp_http_referer,string-locator-smart-edit,submit'),(100,1499876372,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/tools.php?page=string-locator&edit-file=edit.php&file-reference=Lead%20Capture%20Pro%20-%20v1.4.1&file-type=plugin&string-locator-line=63&string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2FLea','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&edit-file=edit.php&file-reference=Lead+Capture+Pro+-+v1.4.1&file-type=plugin&string-locator-line=63&string-locator-path=%2Fhom…','string-locator-editor-content,_wpnonce,_wp_http_referer,string-locator-smart-edit,submit'),(101,1499876522,'172.78.237.21',NULL,'admin',1,'US','badsig','POST[80]:/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead%20Capture%20Pro%20-%20v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2FL','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&edit-file=create.php&file-reference=Lead+Capture+Pro+-+v1.4.1&file-type=plugin&string-locator-line=60&string-locator-path=%2Fh…','string-locator-editor-content,_wpnonce,_wp_http_referer,string-locator-smart-edit,submit'),(102,1499972843,'58.10.65.60',NULL,'xmlrpc',0,'TH','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 5.2) AppleWebKit/532.94.47 (KHTML, like Gecko) Chrome/57.5.0647.5910 Safari/534.65 OPR/40.6.1460.6732','HTTP_REFERER=http://rasburytech.com/,HTTP_X_FORWARDED_FOR=58.10.65.60','<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>wp.getUsersBlogs</methodName></methodCall>'),(103,1500389688,'82.80.230.228',NULL,'login',0,'IL','blocked','GET[80]:/login/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1','HTTP_REFERER=http://www.rasburytech.com/alarms/',''),(104,1500389688,'82.80.230.228',NULL,'login',0,'IL','blocked','GET[80]:/login/?action=register','Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 Firefox/26.0','HTTP_REFERER=http://www.rasburytech.com/alarms/',''),(105,1500428001,'82.80.230.228',NULL,'login',0,'IL','blocked','GET[80]:/login/?action=register','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:26.0) Gecko/20100101 Firefox/26.0','HTTP_REFERER=http://www.rasburytech.com/alarms/',''),(106,1500428002,'82.80.230.228',NULL,'login',0,'IL','blocked','GET[80]:/login/','Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0','HTTP_REFERER=http://www.rasburytech.com/alarms/',''),(107,1500584544,'36.68.128.161',NULL,'admin',0,'ID','blocked','POST[80]:/wp-admin/includes/wp-cods.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','HTTP_REFERER=http://rasburytech.com/wp-admin/includes/wp-cods.php,HTTP_X_CNECTION=Close','four'),(108,1500724901,'178.137.83.166',NULL,'xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','HTTP_KEEP_ALIVE=300',''),(109,1501030797,'61.21.16.97',NULL,'xmlrpc',0,'JP','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_40_03) AppleWebKit/533.09.52 (KHTML, like Gecko) Chrome/53.6.1172.6444 Safari/530.79 Edge/34.75221','HTTP_REFERER=http://rasburytech.com/',''),(110,1501030799,'176.112.11.4',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_40_03) AppleWebKit/533.09.52 (KHTML, like Gecko) Chrome/53.6.1172.6444 Safari/530.79 Edge/34.75221','HTTP_REFERER=http://rasburytech.com/','<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>wp.getUsersBlogs</methodName></methodCall>'),(111,1501944214,'202.80.218.23',NULL,'admin',0,'ID','blocked','GET[80]:/wp-admin/css/colors/blue/system_m.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','HTTP_REFERER=http://rasburytech.com/wp-admin/css/colors/blue/system_m.php',''),(112,1501991169,'46.118.156.191',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(113,1502298461,'91.229.111.51',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(114,1502299252,'176.52.4.166',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(115,1502300101,'213.24.134.96',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(116,1502300985,'201.29.18.36',NULL,'admin',0,'BR','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(117,1502313001,'188.234.246.104',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(118,1502541421,'45.32.183.85',NULL,'xmlrpc',0,'GB','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300',''),(119,1502541437,'45.32.183.85',NULL,'xmlrpc',0,'GB','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(120,1502638863,'37.115.191.239',NULL,'xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','HTTP_KEEP_ALIVE=300',''),(121,1502840048,'91.121.106.53',NULL,'admin',0,'FR','blocked','POST[80]:/wp-admin/maint/db_info.class.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','a,ajax,p1'),(122,1503072947,'51.255.138.90',NULL,'xmlrpc',0,'PL','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(123,1503198736,'178.137.82.201',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(124,1503268372,'51.255.138.90',NULL,'xmlrpc',0,'PL','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(125,1503281892,'192.99.66.206',NULL,'login',0,'CA','blocked','GET[80]:/login/?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','',''),(126,1503281893,'192.99.66.206',NULL,'login',0,'CA','blocked','GET[80]:/login/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','',''),(127,1503282673,'178.137.82.201',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(128,1503322239,'51.255.138.90',NULL,'xmlrpc',0,'PL','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(129,1503540449,'183.87.114.130',NULL,'xmlrpc',0,'IN','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(130,1503544254,'91.210.146.95',NULL,'xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php',''),(131,1503544260,'91.210.146.95',NULL,'xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php','<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>wp.getUsersBlogs</methodName></methodCall>'),(132,1503700479,'94.23.254.125',NULL,'admin',0,'FR','blocked','POST[80]:/wp-admin/includes/rnnvhs.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','coco'),(133,1503702876,'5.135.138.188',NULL,'admin',0,'FR','blocked','GET[80]:/wp-admin/uploader.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com',''),(134,1503894218,'122.2.231.136',NULL,'admin',0,'PH','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(135,1503895353,'78.107.253.58',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(136,1503896387,'212.109.16.228',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(137,1503898593,'212.124.4.66',NULL,'admin',0,'RU','blocked','GET[80]:/wp-admin/','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','HTTP_REFERER=http://www.rasburytech.com/-/-/-/-/-/-/-/-/-/-/',''),(138,1504038319,'172.77.95.68','','login',1,'US','failed','POST[80]:/login/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/affiliate-home/affiliate-login/,HTTP_UPGRADE_INSECURE_REQUESTS=1','log,pwd,wp-submit,redirect_to,wordfence_userDat'),(139,1504135078,'172.77.95.68','','login',1,'US','failed','POST[80]:/login/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','HTTP_DNT=1,HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/affiliate-home/affiliate-login/,HTTP_UPGRADE_INSECURE_REQUESTS=1','log,pwd,wp-submit,redirect_to,wordfence_userDat'),(140,1504230619,'158.140.172.136','','login',0,'ID','blocked','GET[80]:/login','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','HTTP_UPGRADE_INSECURE_REQUESTS=1',''),(141,1504230647,'158.140.172.136','','login',0,'ID','blocked','POST[80]:/login/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','HTTP_ORIGIN=http://www.rasburytech.com,HTTP_REFERER=http://www.rasburytech.com/affiliate-home/affiliate-login/,HTTP_UPGRADE_INSECURE_REQUESTS=1','log,pwd,rememberme,wp-submit,redirect_to'),(142,1504573146,'185.181.10.20','','xmlrpc',0,'DE','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300',''),(143,1504573150,'185.181.10.20','','xmlrpc',0,'DE','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(144,1505445856,'37.115.188.137','','xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(145,1505470270,'149.202.33.10','','admin',0,'FR','blocked','POST[80]:/wp-admin/css/colors/light/akismet.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','a,ajax,p1'),(146,1505470307,'149.202.33.10','','admin',0,'FR','blocked','POST[80]:/wp-admin/css/colors/ectoplasm/akismet.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','a,ajax,p1'),(147,1505470636,'149.202.33.10','','admin',0,'FR','blocked','POST[80]:/wp-admin/network/akismet.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','a,ajax,p1'),(148,1505471471,'37.59.178.110','','xmlrpc',0,'FR','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…'),(149,1505740860,'5.39.216.131','','xmlrpc',0,'NL','blocked','GET[80]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','HTTP_KEEP_ALIVE=300',''),(150,1506027317,'77.220.213.169','','xmlrpc',0,'NL','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.2; Win64) AppleWebKit/530.60.17 (KHTML, like Gecko) Chrome/55.0.5980.0618 Safari/532.90 OPR/41.9.4167.9895','HTTP_REFERER=http://rasburytech.com/',''),(151,1506087522,'46.161.9.59','','login',0,'RU','blocked','GET[80]:/login/?action=register','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',''),(152,1506087523,'46.161.9.59','','login',0,'RU','blocked','GET[80]:/login/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',''),(153,1506220940,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/maint/index.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','bot'),(154,1506333952,'128.199.157.152','','admin',0,'SG','blocked','POST[80]:/wp-admin/includes/index.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','bot'),(155,1506334352,'128.199.157.152','','admin',0,'SG','blocked','POST[80]:/wp-admin/maint/index.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','bot'),(156,1506405253,'185.129.148.167','','admin',0,'LV','blocked','GET[80]:/wp-admin/includes/images.php?x=1','my.support.wordpress.com','',''),(157,1506438348,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/network/update.php?login=x2a5xB','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','z,z0'),(158,1506439759,'81.4.125.125','','login',0,'NL','blocked','GET[80]:/login/?action=register','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com',''),(159,1506481607,'185.129.148.167','','admin',0,'LV','blocked','GET[80]:/wp-admin/network/user-about.php?login=binht','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',''),(160,1506491882,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/includes/rnnvhs.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','coco'),(161,1506641710,'92.222.92.136','','admin',0,'FR','blocked','POST[80]:/wp-admin/user/fronqx.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','coco'),(162,1506641742,'137.74.113.23','','admin',0,'FR','blocked','POST[80]:/wp-admin/home.bak.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','x0x0'),(163,1506641770,'185.129.148.167','','admin',0,'LV','blocked','POST[80]:/wp-admin/home.bak.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','','x0x0'),(164,1506641892,'137.74.113.23','','admin',0,'FR','blocked','POST[80]:/wp-admin/includes/wp-cods.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','HTTP_REFERER=rasburytech.com','four'),(165,1506716189,'91.210.147.209','','xmlrpc',0,'UA','blocked','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php',''),(166,1506716190,'91.210.147.209','','xmlrpc',0,'UA','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','HTTP_REFERER=http://rasburytech.com/xmlrpc.php','<?xml version=\"1.0\" encoding=\"UTF-8\"?><methodCall><methodName>wp.getUsersBlogs</methodName></methodCall>'),(167,1506763732,'185.129.148.167','','admin',0,'LV','blocked','GET[80]:/wp-admin/includes/menustype.php','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',''),(168,1506775200,'183.87.114.130','','xmlrpc',0,'IN','blocked','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0','HTTP_KEEP_ALIVE=300','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><d…');
/*!40000 ALTER TABLE `wpiq_ip_geo_block_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_ip_geo_block_stat`
--

DROP TABLE IF EXISTS `wpiq_ip_geo_block_stat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_ip_geo_block_stat` (
  `No` tinyint(4) unsigned NOT NULL AUTO_INCREMENT,
  `data` longtext,
  PRIMARY KEY (`No`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_ip_geo_block_stat`
--

LOCK TABLES `wpiq_ip_geo_block_stat` WRITE;
/*!40000 ALTER TABLE `wpiq_ip_geo_block_stat` DISABLE KEYS */;
INSERT INTO `wpiq_ip_geo_block_stat` VALUES (1,'a:7:{s:7:\"blocked\";i:34;s:7:\"unknown\";i:0;s:4:\"IPv4\";i:34;s:4:\"IPv6\";i:0;s:9:\"countries\";a:10:{s:2:\"ID\";i:2;s:2:\"DE\";i:4;s:2:\"UA\";i:3;s:2:\"FR\";i:7;s:2:\"NL\";i:3;s:2:\"RU\";i:2;s:2:\"LV\";i:9;s:2:\"SG\";i:2;s:2:\"IN\";i:1;s:2:\"BR\";i:1;}s:9:\"providers\";a:2:{s:5:\"Cache\";a:2:{s:5:\"count\";i:12749;s:4:\"time\";d:54.72302532196044921875;}s:7:\"Maxmind\";a:2:{s:5:\"count\";i:119;s:4:\"time\";d:10.79415798187255859375;}}s:8:\"daystats\";a:16:{i:1504224000;a:1:{s:5:\"login\";i:2;}i:1504569600;a:1:{s:6:\"xmlrpc\";i:2;}i:1505433600;a:2:{s:6:\"xmlrpc\";i:2;s:5:\"admin\";i:3;}i:1505692800;a:1:{s:6:\"xmlrpc\";i:1;}i:1505952000;a:1:{s:6:\"xmlrpc\";i:1;}i:1506038400;a:1:{s:5:\"login\";i:2;}i:1506211200;a:1:{s:5:\"admin\";i:1;}i:1506297600;a:1:{s:5:\"admin\";i:2;}i:1506384000;a:2:{s:5:\"admin\";i:2;s:5:\"login\";i:1;}i:1506470400;a:1:{s:5:\"admin\";i:2;}i:1506556800;a:1:{s:5:\"admin\";i:4;}i:1506643200;a:1:{s:6:\"xmlrpc\";i:2;}i:1506729600;a:2:{s:5:\"admin\";i:1;s:6:\"xmlrpc\";i:1;}i:1506816000;a:1:{s:5:\"admin\";i:1;}i:1506902400;a:1:{s:5:\"admin\";i:1;}i:1506988800;a:2:{s:5:\"admin\";i:2;s:6:\"xmlrpc\";i:1;}}}');
/*!40000 ALTER TABLE `wpiq_ip_geo_block_stat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_companies`
--

DROP TABLE IF EXISTS `wpiq_lcp_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_companies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `salutation_id` int(11) DEFAULT NULL,
  `first_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lastname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company_number` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address2` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `town` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `county` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company_description` text COLLATE utf8mb4_unicode_ci,
  `phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alt_phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `credit_limit` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `service_range` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `receive_leads` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('pending','approved','rejected') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_companies`
--

LOCK TABLES `wpiq_lcp_companies` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_companies` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_companies` VALUES (1,'RTS',1,'Matthew','Rasbury','','14625 Kress Rd','','Roanoke','Allen','46783','Computer Company','2604922166','2607107710','www.rasburytech.com',NULL,NULL,'yes','approved',8,'2017-07-12 13:02:55','2017-07-12 13:02:55');
/*!40000 ALTER TABLE `wpiq_lcp_companies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_companies_leads`
--

DROP TABLE IF EXISTS `wpiq_lcp_companies_leads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_companies_leads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) DEFAULT NULL,
  `lead_id` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_companies_leads`
--

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

--
-- Table structure for table `wpiq_lcp_form_field_options`
--

DROP TABLE IF EXISTS `wpiq_lcp_form_field_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_form_field_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_field_id` int(11) DEFAULT NULL,
  `option_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_form_field_options`
--

LOCK TABLES `wpiq_lcp_form_field_options` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_form_field_options` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_form_field_options` VALUES (1,1,'Mr','2017-07-11 18:44:28','2017-08-30 23:47:03'),(2,1,'Mrs','2017-07-11 18:44:28','2017-07-11 18:44:28'),(3,1,'Miss','2017-07-11 18:44:28','2017-07-11 18:44:28'),(4,1,'Mr','2017-09-06 20:05:24','2017-09-06 20:05:24'),(5,1,'Mrs','2017-09-06 20:05:24','2017-09-06 20:05:24'),(6,1,'Miss','2017-09-06 20:05:24','2017-09-06 20:05:24'),(7,1,'Mr','2017-09-08 08:02:47','2017-09-08 08:02:47'),(8,1,'Mrs','2017-09-08 08:02:47','2017-09-08 08:02:47'),(9,1,'Miss','2017-09-08 08:02:47','2017-09-08 08:02:47');
/*!40000 ALTER TABLE `wpiq_lcp_form_field_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_form_field_properties`
--

DROP TABLE IF EXISTS `wpiq_lcp_form_field_properties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_form_field_properties` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_field_id` int(11) DEFAULT NULL,
  `property` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_form_field_properties`
--

LOCK TABLES `wpiq_lcp_form_field_properties` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_form_field_properties` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_form_field_properties` VALUES (1,1,'id','lcp_title','2017-07-11 18:44:28','2017-08-30 23:47:03'),(2,1,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(3,1,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(4,2,'id','lcp_first_name','2017-07-11 18:44:28','2017-08-30 23:47:03'),(5,2,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(6,2,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(7,2,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(8,3,'id','lcp_lastname','2017-07-11 18:44:28','2017-08-30 23:47:03'),(9,3,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(10,3,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(11,3,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(12,4,'id','lcp_email','2017-07-11 18:44:28','2017-08-30 23:47:03'),(13,4,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(14,4,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(15,4,'placeholder','you@domain.com','2017-07-11 18:44:28','2017-08-30 23:47:03'),(16,5,'id','lcp_address','2017-07-11 18:44:28','2017-08-30 23:47:03'),(17,5,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(18,5,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(19,5,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(20,6,'id','lcp_address2','2017-07-11 18:44:28','2017-08-30 23:47:03'),(21,6,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(22,6,'required','0','2017-07-11 18:44:28','2017-08-30 23:47:03'),(23,6,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(24,7,'id','lcp_town','2017-07-11 18:44:28','2017-08-30 23:47:03'),(25,7,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(26,7,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(27,7,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(28,8,'id','lcp_county','2017-07-11 18:44:28','2017-08-30 23:47:03'),(29,8,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(30,8,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(31,8,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(32,9,'id','lcp_postcode','2017-07-11 18:44:28','2017-08-30 23:47:03'),(33,9,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(34,9,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(35,9,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(36,10,'id','lcp_phone','2017-07-11 18:44:28','2017-08-30 23:47:03'),(37,10,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(38,10,'required','1','2017-07-11 18:44:28','2017-08-30 23:47:03'),(39,10,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(40,11,'id','lcp_alt_phone','2017-07-11 18:44:28','2017-08-30 23:47:03'),(41,11,'class','lcp_input','2017-07-11 18:44:28','2017-08-30 23:47:03'),(42,11,'required','0','2017-07-11 18:44:28','2017-08-30 23:47:03'),(43,11,'placeholder','','2017-07-11 18:44:28','2017-08-30 23:47:03'),(51,2,'id','lcp_first_name','2017-09-06 20:05:24','2017-09-06 20:05:24'),(50,1,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(48,1,'id','lcp_title','2017-09-06 20:05:24','2017-09-06 20:05:24'),(49,1,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(52,2,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(53,2,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(54,2,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(55,3,'id','lcp_lastname','2017-09-06 20:05:24','2017-09-06 20:05:24'),(56,3,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(57,3,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(58,3,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(59,4,'id','lcp_email','2017-09-06 20:05:24','2017-09-06 20:05:24'),(60,4,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(61,4,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(62,4,'placeholder','you@domain.co.uk','2017-09-06 20:05:24','2017-09-06 20:05:24'),(63,5,'id','lcp_address','2017-09-06 20:05:24','2017-09-06 20:05:24'),(64,5,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(65,5,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(66,5,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(67,6,'id','lcp_address2','2017-09-06 20:05:24','2017-09-06 20:05:24'),(68,6,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(69,6,'required','0','2017-09-06 20:05:24','2017-09-06 20:05:24'),(70,6,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(71,7,'id','lcp_town','2017-09-06 20:05:24','2017-09-06 20:05:24'),(72,7,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(73,7,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(74,7,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(75,8,'id','lcp_county','2017-09-06 20:05:24','2017-09-06 20:05:24'),(76,8,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(77,8,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(78,8,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(79,9,'id','lcp_postcode','2017-09-06 20:05:24','2017-09-06 20:05:24'),(80,9,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(81,9,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(82,9,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(83,10,'id','lcp_phone','2017-09-06 20:05:24','2017-09-06 20:05:24'),(84,10,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(85,10,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(86,10,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(87,11,'id','lcp_alt_phone','2017-09-06 20:05:24','2017-09-06 20:05:24'),(88,11,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(89,11,'required','0','2017-09-06 20:05:24','2017-09-06 20:05:24'),(90,11,'placeholder','','2017-09-06 20:05:24','2017-09-06 20:05:24'),(91,12,'id','lcp_description','2017-09-06 20:05:24','2017-09-06 20:05:24'),(92,12,'class','lcp_input','2017-09-06 20:05:24','2017-09-06 20:05:24'),(93,12,'required','1','2017-09-06 20:05:24','2017-09-06 20:05:24'),(94,12,'placeholder','Please tell us about your specific requirements...','2017-09-06 20:05:24','2017-09-06 20:05:24'),(95,1,'id','lcp_title','2017-09-08 08:02:47','2017-09-08 08:02:47'),(96,1,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(97,1,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(98,2,'id','lcp_first_name','2017-09-08 08:02:47','2017-09-08 08:02:47'),(99,2,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(100,2,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(101,2,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(102,3,'id','lcp_lastname','2017-09-08 08:02:47','2017-09-08 08:02:47'),(103,3,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(104,3,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(105,3,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(106,4,'id','lcp_email','2017-09-08 08:02:47','2017-09-08 08:02:47'),(107,4,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(108,4,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(109,4,'placeholder','you@domain.co.uk','2017-09-08 08:02:47','2017-09-08 08:02:47'),(110,5,'id','lcp_address','2017-09-08 08:02:47','2017-09-08 08:02:47'),(111,5,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(112,5,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(113,5,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(114,6,'id','lcp_address2','2017-09-08 08:02:47','2017-09-08 08:02:47'),(115,6,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(116,6,'required','0','2017-09-08 08:02:47','2017-09-08 08:02:47'),(117,6,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(118,7,'id','lcp_town','2017-09-08 08:02:47','2017-09-08 08:02:47'),(119,7,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(120,7,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(121,7,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(122,8,'id','lcp_county','2017-09-08 08:02:47','2017-09-08 08:02:47'),(123,8,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(124,8,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(125,8,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(126,9,'id','lcp_postcode','2017-09-08 08:02:47','2017-09-08 08:02:47'),(127,9,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(128,9,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(129,9,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(130,10,'id','lcp_phone','2017-09-08 08:02:47','2017-09-08 08:02:47'),(131,10,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(132,10,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(133,10,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(134,11,'id','lcp_alt_phone','2017-09-08 08:02:47','2017-09-08 08:02:47'),(135,11,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(136,11,'required','0','2017-09-08 08:02:47','2017-09-08 08:02:47'),(137,11,'placeholder','','2017-09-08 08:02:47','2017-09-08 08:02:47'),(138,12,'id','lcp_description','2017-09-08 08:02:47','2017-09-08 08:02:47'),(139,12,'class','lcp_input','2017-09-08 08:02:47','2017-09-08 08:02:47'),(140,12,'required','1','2017-09-08 08:02:47','2017-09-08 08:02:47'),(141,12,'placeholder','Please tell us about your specific requirements...','2017-09-08 08:02:47','2017-09-08 08:02:47');
/*!40000 ALTER TABLE `wpiq_lcp_form_field_properties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_form_fields`
--

DROP TABLE IF EXISTS `wpiq_lcp_form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_form_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) DEFAULT NULL,
  `field_label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_visible` tinyint(1) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_form_fields`
--

LOCK TABLES `wpiq_lcp_form_fields` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_form_fields` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_form_fields` VALUES (1,1,'Title','select','salutation_id',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(2,1,'First Name','text','first_name',1,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(3,1,'Last Name','text','lastname',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(4,1,'Email','text','email',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(5,1,'Address','text','address',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(6,1,'Address2','text','address2',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(7,1,'City','text','town',1,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(8,1,'State','text','county',1,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(9,1,'Zip Code','text','postcode',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(10,1,'Phone','text','phone',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(11,1,'Alternative Phone','text','alt_phone',0,'2017-07-11 18:44:28','2017-08-30 23:47:03'),(13,1,'Title','select','salutation_id',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(14,1,'Firstname','text','first_name',1,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(15,1,'Surname','text','lastname',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(16,1,'Email','text','email',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(17,1,'Address','text','address',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(18,1,'Address2','text','address2',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(19,1,'Town','text','town',1,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(20,1,'County','text','county',1,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(21,1,'Postcode','text','postcode',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(22,1,'Phone','text','phone',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(23,1,'Alternative Phone','text','alt_phone',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(24,1,'Description','textarea','description',0,'2017-09-06 20:05:24','2017-09-06 20:05:24'),(25,1,'Title','select','salutation_id',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(26,1,'Firstname','text','first_name',1,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(27,1,'Surname','text','lastname',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(28,1,'Email','text','email',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(29,1,'Address','text','address',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(30,1,'Address2','text','address2',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(31,1,'Town','text','town',1,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(32,1,'County','text','county',1,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(33,1,'Postcode','text','postcode',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(34,1,'Phone','text','phone',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(35,1,'Alternative Phone','text','alt_phone',0,'2017-09-08 08:02:47','2017-09-08 08:02:47'),(36,1,'Description','textarea','description',0,'2017-09-08 08:02:47','2017-09-08 08:02:47');
/*!40000 ALTER TABLE `wpiq_lcp_form_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_forms`
--

DROP TABLE IF EXISTS `wpiq_lcp_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_forms`
--

LOCK TABLES `wpiq_lcp_forms` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_forms` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_forms` VALUES (1,'default','2017-07-11 18:44:28','2017-08-30 23:47:03'),(2,'Healthcare Lead','2017-07-13 00:54:59','2017-07-13 00:56:55'),(3,'Business Lead','2017-07-13 00:55:21','2017-07-13 00:58:03'),(4,'Auto Sale Lead','2017-07-13 00:55:38','2017-07-13 00:57:35'),(6,'Real Estate Lead','2017-07-13 00:59:43','2017-07-13 00:59:43'),(7,'default','2017-09-06 20:05:24','2017-09-06 20:05:24'),(8,'default','2017-09-08 08:02:47','2017-09-08 08:02:47');
/*!40000 ALTER TABLE `wpiq_lcp_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_leads`
--

DROP TABLE IF EXISTS `wpiq_lcp_leads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_leads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `salutation_id` int(11) DEFAULT NULL,
  `first_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lastname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address2` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `town` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `county` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alt_phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `data` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_id` int(11) unsigned NOT NULL,
  `status` enum('pending','approved','rejected') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_leads`
--

LOCK TABLES `wpiq_lcp_leads` WRITE;
/*!40000 ALTER TABLE `wpiq_lcp_leads` DISABLE KEYS */;
INSERT INTO `wpiq_lcp_leads` VALUES (1,'ee0cffbd5ca3e3284fa79851e562dbdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'a:12:{s:13:\"salutation_id\";N;s:10:\"first_name\";N;s:8:\"lastname\";N;s:5:\"email\";N;s:7:\"address\";N;s:8:\"address2\";N;s:4:\"town\";N;s:6:\"county\";N;s:8:\"postcode\";N;s:5:\"phone\";N;s:9:\"alt_phone\";N;s:11:\"description\";N;}',1,'approved','2017-07-12 16:00:09','2017-07-12 16:02:32'),(2,'b0c8044129db6873671d4f05485120b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'a:12:{s:13:\"salutation_id\";N;s:10:\"first_name\";N;s:8:\"lastname\";N;s:5:\"email\";N;s:7:\"address\";N;s:8:\"address2\";N;s:4:\"town\";N;s:6:\"county\";N;s:8:\"postcode\";N;s:5:\"phone\";N;s:9:\"alt_phone\";N;s:11:\"description\";N;}',1,'approved','2017-07-12 20:39:02','2017-07-12 20:39:02');
/*!40000 ALTER TABLE `wpiq_lcp_leads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_lcp_orders`
--

DROP TABLE IF EXISTS `wpiq_lcp_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_lcp_orders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lead_id` int(11) DEFAULT NULL,
  `company_id` int(11) DEFAULT NULL,
  `payment_provider` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_reference` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_lcp_orders`
--

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

--
-- Table structure for table `wpiq_links`
--

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

--
-- Dumping data for table `wpiq_links`
--

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

--
-- Table structure for table `wpiq_login_redirects`
--

DROP TABLE IF EXISTS `wpiq_login_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_login_redirects` (
  `rul_type` enum('user','role','level','all','register') COLLATE utf8mb4_unicode_ci NOT NULL,
  `rul_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `rul_url` longtext COLLATE utf8mb4_unicode_ci,
  `rul_url_logout` longtext COLLATE utf8mb4_unicode_ci,
  `rul_order` int(2) NOT NULL DEFAULT '0',
  UNIQUE KEY `rul_type` (`rul_type`,`rul_value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_login_redirects`
--

LOCK TABLES `wpiq_login_redirects` WRITE;
/*!40000 ALTER TABLE `wpiq_login_redirects` DISABLE KEYS */;
INSERT INTO `wpiq_login_redirects` VALUES ('all',NULL,NULL,NULL,0),('register',NULL,NULL,NULL,0),('role','affiliate','http://www.rasburytech.com/affiliate-home-2/','http://www.rasburytech.com/affiliate-home/affiliate-login/',0),('role','lcp_member','','http://www.rasburytech.com/affiliate-home/affiliate-login/',0);
/*!40000 ALTER TABLE `wpiq_login_redirects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_loginizer_logs`
--

DROP TABLE IF EXISTS `wpiq_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiq_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT '0',
  `count` int(10) NOT NULL DEFAULT '0',
  `lockout` int(10) NOT NULL DEFAULT '0',
  `ip` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiq_loginizer_logs`
--

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

--
-- Table structure for table `wpiq_options`
--

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

--
-- Dumping data for table `wpiq_options`
--

LOCK TABLES `wpiq_options` WRITE;
/*!40000 ALTER TABLE `wpiq_options` DISABLE KEYS */;
INSERT INTO `wpiq_options` VALUES (1,'siteurl','http://www.rasburytech.com','yes'),(2,'home','http://www.rasburytech.com','yes'),(3,'blogname','RTS','yes'),(4,'blogdescription','Rasbury Technology Solutions','yes'),(5,'users_can_register','1','yes'),(6,'admin_email','admin@rasburytech.com','yes'),(7,'start_of_week','0','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.rasburytech.com','yes'),(15,'mailserver_login','admin@rasburytech.com','yes'),(16,'mailserver_pass','Denise3417!','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','F j, Y','yes'),(24,'time_format','g:i A','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','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:28:{i:0;s:23:\"wp-autoloader/index.php\";i:1;s:19:\"404page/404page.php\";i:2;s:46:\"Lead Capture Pro - v1.4.1/lead-capture-pro.php\";i:3;s:37:\"admin-menu-editor-pro/menu-editor.php\";i:4;s:33:\"affiliates-manager/boot-strap.php\";i:5;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:7;s:35:\"call-now-button/call-now-button.php\";i:8;s:27:\"captainform/captainform.php\";i:9;s:48:\"codelights-shortcodes-and-widgets/codelights.php\";i:10;s:69:\"country-ip-specific-redirections/country-ip-specific-redirections.php\";i:11;s:31:\"direct-stripe/direct-stripe.php\";i:12;s:37:\"disable-comments/disable-comments.php\";i:13;s:23:\"font-awesome/plugin.php\";i:14;s:36:\"hide-singular-title/plghidetitle.php\";i:15;s:38:\"hide-title/dojo-digital-hide-title.php\";i:16;s:23:\"loginizer/loginizer.php\";i:18;s:31:\"page-links-to/page-links-to.php\";i:19;s:42:\"peters-login-redirect/wplogin_redirect.php\";i:20;s:57:\"real-time-find-and-replace/real-time-find-and-replace.php\";i:21;s:39:\"simple-custom-css/simple-custom-css.php\";i:22;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:23;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";i:24;s:33:\"string-locator/string-locator.php\";i:25;s:23:\"wordfence/wordfence.php\";i:26;s:24:\"wordpress-seo/wp-seo.php\";i:27;s:47:\"wp-simple-mail-sender/wp-simple-mail-sender.php\";i:28;s:60:\"wp-support-plus-responsive-ticket-system/wp-support-plus.php\";i:29;s:33:\"wps-hide-login/wps-hide-login.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','-5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:87:\"/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/online-booking/cozycal.php\";i:1;s:82:\"/home/avidwe5/public_html/rasburytech.com/wp-content/themes/rock-n-rolla/style.css\";i:2;s:83:\"/home/avidwe5/public_html/rasburytech.com/wp-content/themes/rock-n-rolla/footer.php\";i:3;s:83:\"/home/avidwe5/public_html/rasburytech.com/wp-content/themes/rock-n-rolla/header.php\";i:4;s:0:\"\";}','no'),(40,'template','rock-n-rolla','yes'),(41,'stylesheet','rock-n-rolla','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','0','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:8:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:29:\"easy-columns/easy-columns.php\";a:2:{i:0;s:11:\"EasyColumns\";i:1;s:9:\"uninstall\";}s:27:\"captainform/captainform.php\";s:21:\"uninstall_captainform\";s:35:\"sprout-invoices/sprout-invoices.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}s:42:\"peters-login-redirect/wplogin_redirect.php\";s:13:\"rul_uninstall\";s:39:\"simple-custom-css/simple-custom-css.php\";s:15:\"sccss_uninstall\";s:26:\"easy-appointments/main.php\";a:2:{i:0;s:15:\"EasyAppointment\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','4','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wpiq_user_roles','a:16:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:137:{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:15:\"wpseo_bulk_edit\";b:1;s:26:\"manage_support_plus_ticket\";b:1;s:25:\"manage_support_plus_agent\";b:1;s:13:\"edit_lcp_form\";b:1;s:10:\"wpam_admin\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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: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:11:\"stripe-user\";a:2:{s:4:\"name\";s:11:\"Stripe user\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:21:\"wp_support_plus_agent\";a:2:{s:4:\"name\";s:13:\"Support Agent\";s:12:\"capabilities\";a:2:{s:26:\"manage_support_plus_ticket\";b:1;s:4:\"read\";b:1;}}s:26:\"wp_support_plus_supervisor\";a:2:{s:4:\"name\";s:18:\"Support Supervisor\";s:12:\"capabilities\";a:3:{s:26:\"manage_support_plus_ticket\";b:1;s:25:\"manage_support_plus_agent\";b:1;s:4:\"read\";b:1;}}s:9:\"sa_client\";a:2:{s:4:\"name\";s:6:\"Client\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:10:\"lcp_member\";a:2:{s:4:\"name\";s:10:\"LCP Member\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:9:\"lcp_admin\";a:2:{s:4:\"name\";s:9:\"LCP Admin\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:13:\"edit_lcp_form\";b:1;s:7:\"level_9\";b:1;}}s:9:\"affiliate\";a:2:{s:4:\"name\";s:9:\"Affiliate\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:109:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{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: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'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:17:\"footer-one-widget\";a:2:{i:0;s:12:\"sow-button-3\";i:1;s:12:\"sow-button-6\";}s:17:\"footer-two-widget\";a:2:{i:0;s:12:\"sow-button-2\";i:1;s:12:\"sow-button-5\";}s:19:\"footer-three-widget\";a:2:{i:0;s:12:\"sow-button-4\";i:1;s:12:\"sow-button-7\";}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'cron','a:13:{i:1516281975;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:1516283151;a:1:{s:44:\"puc_cron_check_updates-admin-menu-editor-pro\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1516317193;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1516317223;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1516317722;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1516317975;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:1516326018;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1516327103;a:1:{s:34:\"wpsp_attachment_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1516331301;a:1:{s:13:\"si_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:1516333800;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"512f70bba3b9af20d5e6f30b7d0f6ed8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1516333800;}}}}i:1516593000;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"201434d007842f9a8cee90f8db93bade\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1516593000;}}}}i:1516654800;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:{}}}}s:7:\"version\";i:2;}','yes'),(105,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487632835;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(106,'loginizer_version','1.3.8','yes'),(107,'loginizer_options','a:0:{}','yes'),(108,'loginizer_last_reset','1516210877','yes'),(109,'loginizer_whitelist','a:0:{}','yes'),(110,'loginizer_blacklist','a:0:{}','yes'),(111,'loginizer_ins_time','1487632394','yes'),(112,'loginizer_promo_time','-1490662693','yes'),(157,'widget_enlighten_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_enlighten_recent_news','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(177,'sc_settings','a:17:{s:4:\"name\";s:28:\"Rasbury Technology Solutions\";s:8:\"currency\";s:3:\"USD\";s:9:\"image_url\";s:0:\"\";s:20:\"payment_button_label\";s:0:\"\";s:21:\"checkout_button_label\";s:0:\"\";s:20:\"success_redirect_url\";s:0:\"\";s:20:\"failure_redirect_url\";s:0:\"\";s:7:\"billing\";s:1:\"1\";s:10:\"verify_zip\";s:1:\"1\";s:15:\"enable_remember\";s:1:\"1\";s:6:\"alipay\";s:5:\"false\";s:6:\"locale\";s:0:\"\";s:23:\"uninstall_save_settings\";s:1:\"1\";s:15:\"test_secret_key\";s:32:\"sk_test_6hVvgNfuNIwSRoDKASvMkQTp\";s:16:\"test_publish_key\";s:32:\"pk_test_5D6ej7TK9liCMi99N601i2sN\";s:15:\"live_secret_key\";s:32:\"sk_live_Nf1fxU07KTCPRPkolgjSEuE2\";s:16:\"live_publish_key\";s:32:\"pk_live_uobesm2npdRdgNw0TtfkidA8\";}','yes'),(178,'sc_set_defaults','1','yes'),(233,'siteorigin_panels_initial_version','2.4.25','no'),(16525,'_site_transient_timeout_theme_roots','1516282085','no'),(16526,'_site_transient_theme_roots','a:4:{s:12:\"rock-n-rolla\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(3287,'_site_transient_timeout_browser_e962b733612dd4249c54f83e15b3b715','1493061912','no'),(3288,'_site_transient_browser_e962b733612dd4249c54f83e15b3b715','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(2687,'_x_time','1516399528','yes'),(2688,'wp_cip_mass_redirect','0','yes'),(2689,'wp_cip_mass_url','http://','yes'),(2690,'wp_cip_no_redirect','0','yes'),(2691,'ip_geo_block_settings','a:33:{s:7:\"version\";s:7:\"3.0.4.5\";s:9:\"providers\";a:0:{}s:7:\"comment\";a:2:{s:3:\"pos\";i:0;s:3:\"msg\";N;}s:13:\"matching_rule\";i:0;s:10:\"white_list\";s:2:\"US\";s:10:\"black_list\";s:2:\"ZZ\";s:7:\"timeout\";i:5;s:13:\"response_code\";i:403;s:15:\"save_statistics\";b:1;s:15:\"clean_uninstall\";b:0;s:10:\"cache_hold\";i:10;s:10:\"cache_time\";i:3600;s:13:\"cache_time_gc\";i:900;s:11:\"login_fails\";i:5;s:10:\"validation\";a:20:{s:7:\"comment\";b:0;s:5:\"login\";i:1;s:5:\"admin\";i:1;s:4:\"ajax\";i:0;s:6:\"xmlrpc\";i:1;s:5:\"proxy\";N;s:7:\"reclogs\";i:1;s:7:\"postkey\";N;s:7:\"maxlogs\";i:100;s:6:\"backup\";N;s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:6:\"timing\";i:0;s:7:\"recdays\";i:30;s:8:\"includes\";i:3;s:7:\"uploads\";i:3;s:9:\"languages\";i:3;s:6:\"public\";i:0;s:7:\"restapi\";i:3;s:8:\"mimetype\";i:0;}s:6:\"update\";a:3:{s:4:\"auto\";b:1;s:5:\"retry\";i:0;s:5:\"cycle\";i:30;}s:8:\"priority\";i:0;s:9:\"anonymize\";b:0;s:9:\"signature\";s:26:\"../,/wp-config.php,/passwd\";s:9:\"extra_ips\";a:2:{s:10:\"white_list\";N;s:10:\"black_list\";N;}s:7:\"rewrite\";a:5:{s:7:\"plugins\";b:0;s:6:\"themes\";b:0;s:8:\"includes\";b:0;s:7:\"uploads\";b:0;s:9:\"languages\";b:0;}s:7:\"Maxmind\";a:9:{s:9:\"ipv4_path\";s:81:\"/home/avidwe5/public_html/rasburytech.com/wp-content/ip-geo-api/maxmind/GeoIP.dat\";s:9:\"ipv6_path\";s:83:\"/home/avidwe5/public_html/rasburytech.com/wp-content/ip-geo-api/maxmind/GeoIPv6.dat\";s:9:\"ipv4_last\";i:1504742496;s:9:\"ipv6_last\";i:1504742492;s:7:\"use_asn\";i:0;s:9:\"asn4_path\";N;s:9:\"asn4_last\";i:0;s:9:\"asn6_path\";N;s:9:\"asn6_last\";i:0;}s:11:\"IP2Location\";a:4:{s:9:\"ipv4_path\";s:100:\"/home/avidwe5/public_html/rasburytech.com/wp-content/ip-geo-api/ip2location/IP2LOCATION-LITE-DB1.BIN\";s:9:\"ipv6_path\";s:105:\"/home/avidwe5/public_html/rasburytech.com/wp-content/ip-geo-api/ip2location/IP2LOCATION-LITE-DB1.IPV6.BIN\";s:9:\"ipv4_last\";i:1506600342;s:9:\"ipv6_last\";i:1506609595;}s:7:\"api_dir\";s:63:\"/home/avidwe5/public_html/rasburytech.com/wp-content/ip-geo-api\";s:9:\"exception\";a:8:{s:7:\"plugins\";a:0:{}s:6:\"themes\";a:0:{}s:5:\"admin\";a:0:{}s:6:\"public\";a:4:{i:0;s:13:\"bbp-new-topic\";i:1;s:14:\"bbp-edit-topic\";i:2;s:13:\"bbp-new-reply\";i:3;s:14:\"bbp-edit-reply\";}s:8:\"includes\";a:0:{}s:7:\"uploads\";a:0:{}s:9:\"languages\";a:0:{}s:7:\"restapi\";a:0:{}}s:7:\"api_key\";a:1:{s:9:\"GoogleMap\";N;}s:12:\"login_action\";a:5:{s:5:\"login\";b:1;s:8:\"register\";b:1;s:12:\"lostpassword\";b:1;s:8:\"postpass\";b:1;s:9:\"resetpass\";b:1;}s:12:\"response_msg\";s:39:\"Sorry, your request cannot be accepted.\";s:12:\"redirect_uri\";s:33:\"http://blackhole.webpagetest.org/\";s:12:\"network_wide\";b:0;s:6:\"public\";a:14:{s:13:\"matching_rule\";i:-1;s:10:\"white_list\";N;s:10:\"black_list\";s:2:\"ZZ\";s:11:\"target_rule\";i:0;s:12:\"target_pages\";a:0:{}s:12:\"target_posts\";a:0:{}s:12:\"target_cates\";a:0:{}s:11:\"target_tags\";a:0:{}s:7:\"ua_list\";s:102:\"Google:HOST,bot:HOST,slurp:HOST\nspider:HOST,archive:HOST,*:FEED\nembed.ly:HOST,Twitterbot:US,Facebot:US\";s:8:\"simulate\";b:0;s:12:\"redirect_uri\";N;s:12:\"response_msg\";s:39:\"Sorry, your request cannot be accepted.\";s:13:\"response_code\";i:307;s:7:\"dnslkup\";b:1;}s:8:\"mimetype\";a:3:{s:10:\"white_list\";a:25:{s:12:\"jpg|jpeg|jpe\";s:10:\"image/jpeg\";s:3:\"gif\";s:9:\"image/gif\";s:3:\"png\";s:9:\"image/png\";s:3:\"ico\";s:12:\"image/x-icon\";s:3:\"wmv\";s:14:\"video/x-ms-wmv\";s:3:\"avi\";s:9:\"video/avi\";s:6:\"mov|qt\";s:15:\"video/quicktime\";s:12:\"mpeg|mpg|mpe\";s:10:\"video/mpeg\";s:7:\"mp4|m4v\";s:9:\"video/mp4\";s:3:\"ogv\";s:9:\"video/ogg\";s:8:\"3gp|3gpp\";s:10:\"video/3gpp\";s:8:\"3g2|3gp2\";s:11:\"video/3gpp2\";s:11:\"mp3|m4a|m4b\";s:10:\"audio/mpeg\";s:3:\"wav\";s:9:\"audio/wav\";s:7:\"ogg|oga\";s:9:\"audio/ogg\";s:3:\"pdf\";s:15:\"application/pdf\";s:3:\"psd\";s:24:\"application/octet-stream\";s:3:\"doc\";s:18:\"application/msword\";s:11:\"pot|pps|ppt\";s:29:\"application/vnd.ms-powerpoint\";s:15:\"xla|xls|xlt|xlw\";s:24:\"application/vnd.ms-excel\";s:4:\"docx\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:4:\"xlsx\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:4:\"pptx\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:4:\"ppsx\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:3:\"odt\";s:39:\"application/vnd.oasis.opendocument.text\";}s:10:\"black_list\";s:104:\"asp,aspx,cgi,exe,js,jsp,php,php3,php4,php5,pl,py,pht,phtml,html,htm,shtml,htaccess,sh,svg,gz,zip,rar,tar\";s:10:\"capability\";a:1:{i:0;s:12:\"upload_files\";}}s:6:\"others\";a:0:{}}','yes'),(2843,'cnb','a:7:{s:6:\"active\";i:1;s:6:\"number\";s:10:\"2604922166\";s:5:\"color\";s:7:\"#009900\";s:10:\"appearance\";s:5:\"right\";s:8:\"tracking\";s:1:\"1\";s:4:\"show\";s:0:\"\";s:7:\"version\";s:5:\"0.2.1\";}','yes'),(10644,'woocommerce_default_customer_address','geolocation','yes'),(10456,'pp-404page-admin-notice-2-start','1506546644','yes'),(2857,'captainform_site_url','http://www.rasburytech.com','no'),(2906,'wses-main-options','a:2:{s:9:\"from-name\";s:28:\"Rasbury Technology Solutions\";s:12:\"from-address\";s:24:\"payments@rasburytech.com\";}','yes'),(2821,'_site_transient_timeout_browser_07d46d768553a7ce886df5ca9e8a21bc','1492519523','no'),(2822,'_site_transient_browser_07d46d768553a7ce886df5ca9e8a21bc','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:13:\"Mobile Safari\";s:7:\"version\";s:6:\"537.36\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(2918,'siteorigin_panels_active_version','2.5.14','yes'),(2655,'disable_comments_options','a:5:{s:19:\"disabled_post_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";}s:17:\"remove_everywhere\";b:1;s:9:\"permanent\";b:0;s:16:\"extra_post_types\";b:0;s:10:\"db_version\";i:6;}','yes'),(2552,'direct_stripe_styles_settings','a:7:{s:31:\"direct_stripe_use_custom_styles\";s:1:\"3\";s:30:\"direct_stripe_main_color_style\";s:7:\"#47a447\";s:27:\"direct_stripe_border_radius\";s:1:\"0\";s:29:\"direct_stripe_use_tc_checkbox\";s:1:\"1\";s:21:\"direct_stripe_tc_text\";s:15:\"I agree to the \";s:26:\"direct_stripe_tc_link_text\";s:5:\"terms\";s:21:\"direct_stripe_tc_link\";s:3:\"342\";}','yes'),(2573,'_site_transient_timeout_browser_d4f514b1e3040b31a8de27f45ba9b6b2','1492369690','no'),(2574,'_site_transient_browser_d4f514b1e3040b31a8de27f45ba9b6b2','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"57.0.2987.133\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(2720,'_site_transient_timeout_browser_ce290af4083a5e71c26c2d360ac888b6','1492450595','no'),(2721,'_site_transient_browser_ce290af4083a5e71c26c2d360ac888b6','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"57.0.2987.133\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(2011,'plugin_erident_settings','a:36:{s:19:\"dashboard_data_left\";s:14:\"Powered by RTS\";s:20:\"dashboard_data_right\";s:27:\"© 2017 All Rights Reserved\";s:12:\"top_bg_color\";s:7:\"#dbdbcf\";s:12:\"top_bg_image\";s:0:\"\";s:13:\"top_bg_repeat\";s:6:\"repeat\";s:11:\"top_bg_xpos\";s:3:\"top\";s:11:\"top_bg_ypos\";s:4:\"left\";s:11:\"top_bg_size\";s:4:\"auto\";s:20:\"dashboard_image_logo\";s:67:\"http://www.rasburytech.com/wp-content/uploads/2017/03/loginlogo.png\";s:26:\"dashboard_image_logo_width\";s:3:\"298\";s:27:\"dashboard_image_logo_height\";s:3:\"127\";s:20:\"dashboard_power_text\";s:14:\"Powered by RTS\";s:21:\"dashboard_login_width\";s:3:\"350\";s:22:\"dashboard_login_radius\";s:2:\"10\";s:22:\"dashboard_login_border\";s:5:\"solid\";s:22:\"dashboard_border_thick\";s:1:\"4\";s:22:\"dashboard_border_color\";s:7:\"#0069A0\";s:18:\"dashboard_login_bg\";s:7:\"#ffffff\";s:26:\"dashboard_login_bg_opacity\";s:1:\"1\";s:14:\"login_bg_image\";s:0:\"\";s:15:\"login_bg_repeat\";s:6:\"repeat\";s:13:\"login_bg_xpos\";s:3:\"top\";s:13:\"login_bg_ypos\";s:4:\"left\";s:20:\"dashboard_text_color\";s:7:\"#000000\";s:25:\"dashboard_label_text_size\";s:2:\"14\";s:26:\"dashboard_input_text_color\";s:7:\"#555555\";s:25:\"dashboard_input_text_size\";s:2:\"24\";s:20:\"dashboard_link_color\";s:7:\"#21759B\";s:22:\"dashboard_check_shadow\";s:3:\"Yes\";s:21:\"dashboard_link_shadow\";s:7:\"#ffffff\";s:27:\"dashboard_check_form_shadow\";s:3:\"Yes\";s:21:\"dashboard_form_shadow\";s:7:\"#C8C8C8\";s:22:\"dashboard_button_color\";s:7:\"#5E5E5E\";s:25:\"dashboard_check_lost_pass\";s:2:\"No\";s:26:\"dashboard_check_backtoblog\";s:2:\"No\";s:19:\"dashboard_delete_db\";s:2:\"No\";}','yes'),(2380,'direct_stripe_emails_settings','a:12:{s:35:\"direct_stripe_admin_emails_checkbox\";s:1:\"1\";s:33:\"direct_stripe_admin_email_subject\";s:24:\"RTS - Successful Payment\";s:33:\"direct_stripe_admin_email_content\";s:57:\"A payment has been processed on RTS\r\n<br><br>\r\nThank you.\";s:34:\"direct_stripe_user_emails_checkbox\";s:1:\"1\";s:32:\"direct_stripe_user_email_subject\";s:33:\"RTS - Your payment was successful\";s:32:\"direct_stripe_user_email_content\";s:265:\"We appreciate your business!\r\n<br><br>\r\nThank you for your payment.\r\n<br><br>\r\nIf you have any questions please contact us.\r\n<br><br>\r\nRasbury Technology Solutions<br>\r\nwww.RasburyTech.com<br>\r\npayments@rasburytech.com<br>\r\n(260) 492-2166<br>\r\n9am - 6pm / Mon - Fri\";s:41:\"direct_stripe_admin_error_emails_checkbox\";s:1:\"1\";s:39:\"direct_stripe_admin_error_email_subject\";s:26:\"RTS - A payment has failed\";s:39:\"direct_stripe_admin_error_email_content\";s:43:\"A payment has failed.\r\n<br><br>\r\nThank you.\";s:40:\"direct_stripe_user_error_emails_checkbox\";s:1:\"1\";s:38:\"direct_stripe_user_error_email_subject\";s:29:\"RTS - Your payment has failed\";s:38:\"direct_stripe_user_error_email_content\";s:266:\"We appreciate your business!\r\n<br><br>\r\nBut your payment has failed.\r\n<br><br>\r\nIf you have any questions please contact us.\r\n<br><br>\r\nRasbury Technology Solutions<br>\r\nwww.RasburyTech.com<br>\r\npayments@rasburytech.com<br>\r\n(260) 492-2166<br>\r\n9am - 6pm / Mon - Fri\";}','yes'),(4230,'si_payment_processor','a:1:{i:0;s:9:\"SI_Checks\";}','yes'),(1714,'wpseo_sitemap_132_cache_validator','jqNB','no'),(1726,'wpseo_sitemap_162_cache_validator','jqO7','no'),(1722,'wpseo_sitemap_147_cache_validator','jqNW','no'),(1723,'wpseo_sitemap_148_cache_validator','jqNY','no'),(1724,'wpseo_sitemap_149_cache_validator','jqO2','no'),(1725,'wpseo_sitemap_161_cache_validator','jqO5','no'),(1707,'wpseo_sitemap_124_cache_validator','jqNs','no'),(1708,'wpseo_sitemap_125_cache_validator','jqNu','no'),(1709,'wpseo_sitemap_126_cache_validator','jqNv','no'),(1710,'wpseo_sitemap_127_cache_validator','jqNw','no'),(1711,'wpseo_sitemap_128_cache_validator','jqNx','no'),(1712,'wpseo_sitemap_129_cache_validator','jqNz','no'),(1713,'wpseo_sitemap_131_cache_validator','jqNA','no'),(6369,'_transient_timeout_plugin_slugs','1507260601','no'),(6370,'_transient_plugin_slugs','a:31:{i:0;s:19:\"404page/404page.php\";i:1;s:37:\"admin-menu-editor-pro/menu-editor.php\";i:2;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:3;s:25:\"booking/wpdev-booking.php\";i:4;s:35:\"call-now-button/call-now-button.php\";i:5;s:27:\"captainform/captainform.php\";i:6;s:69:\"country-ip-specific-redirections/country-ip-specific-redirections.php\";i:7;s:31:\"direct-stripe/direct-stripe.php\";i:8;s:37:\"disable-comments/disable-comments.php\";i:9;s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";i:10;s:23:\"font-awesome/plugin.php\";i:11;s:36:\"hide-singular-title/plghidetitle.php\";i:12;s:38:\"hide-title/dojo-digital-hide-title.php\";i:13;s:29:\"ip-geo-block/ip-geo-block.php\";i:14;s:46:\"Lead Capture Pro - v1.4.1/lead-capture-pro.php\";i:15;s:23:\"loginizer/loginizer.php\";i:16;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:17;s:31:\"page-links-to/page-links-to.php\";i:18;s:42:\"peters-login-redirect/wplogin_redirect.php\";i:19;s:57:\"real-time-find-and-replace/real-time-find-and-replace.php\";i:20;s:39:\"simple-custom-css/simple-custom-css.php\";i:21;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";i:22;s:48:\"codelights-shortcodes-and-widgets/codelights.php\";i:23;s:33:\"string-locator/string-locator.php\";i:24;s:23:\"wordfence/wordfence.php\";i:25;s:33:\"affiliates-manager/boot-strap.php\";i:26;s:23:\"wp-autoloader/index.php\";i:27;s:33:\"wps-hide-login/wps-hide-login.php\";i:28;s:47:\"wp-simple-mail-sender/wp-simple-mail-sender.php\";i:29;s:60:\"wp-support-plus-responsive-ticket-system/wp-support-plus.php\";i:30;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(140,'can_compress_scripts','0','no'),(141,'_site_transient_timeout_wporg_theme_feature_list','1487644543','no'),(142,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(145,'current_theme','Rock N Rolla','yes'),(146,'theme_mods_nikkon','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487633559;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:27:\"nikkon-site-footer-standard\";a:0:{}}}}','yes'),(147,'theme_switched','','yes'),(153,'_transient_nikkon_categories','1','yes'),(156,'theme_mods_enlighten','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487633990;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"enlighten_sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:19:\"enlighten_sidebar-2\";a:0:{}s:22:\"enlighten_home_twitter\";N;s:18:\"enlighten_footer-1\";N;s:18:\"enlighten_footer-2\";N;s:18:\"enlighten_footer-3\";N;}}}','yes'),(163,'widget_rock_n_rolla_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(175,'recently_activated','a:5:{s:25:\"booking/wpdev-booking.php\";i:1507174200;s:26:\"online-booking/cozycal.php\";i:1507172801;s:37:\"booking-calendar/booking_calendar.php\";i:1507167807;s:26:\"easy-appointments/main.php\";i:1507158376;s:29:\"ip-geo-block/ip-geo-block.php\";i:1507075818;}','yes'),(317,'wpseo_sitemap_category_cache_validator','2gNlO','no'),(162,'theme_mods_rock-n-rolla','a:18:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:35:\"rock_n_rolla_display_slider_setting\";i:0;s:37:\"rock_n_rolla_display_carousel_setting\";i:1;s:29:\"rock_n_rolla_facebook_setting\";s:35:\"http://www.facebook.com/rasburytech\";s:27:\"rock_n_rolla_google_setting\";s:26:\"http://www.google.plus.com\";s:28:\"rock_n_rolla_youtube_setting\";s:34:\"http://www.youtube.com/rasburytech\";s:26:\"rock_n_rolla_email_setting\";s:20:\"info@rasburytech.com\";s:34:\"rock_n_rolla_primary_color_setting\";s:7:\"#af0e0e\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:27:\"rock_n_rolla_carousel_label\";s:0:\"\";s:38:\"rock_n_rolla_carousel_category_setting\";s:8:\"carousel\";s:35:\"rock_n_rolla_carousel_speed_setting\";i:8000;s:35:\"rock_n_rolla_slide_category_setting\";s:8:\"carousel\";s:33:\"rock_n_rolla_slider_speed_setting\";i:8000;s:16:\"background_color\";s:6:\"111111\";s:16:\"header_textcolor\";s:5:\"blank\";s:11:\"custom_logo\";i:507;}','yes'),(11221,'_site_transient_timeout_available_translations','1504455683','no'),(11222,'_site_transient_available_translations','a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-09-01 07:24:38\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/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:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-29 08:49:40\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.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:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.5\";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:62:\"https://downloads.wordpress.org/translation/core/4.7.5/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:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:0:\"\";}}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:\"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:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 18:40:55\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.1/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-09 09:24:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";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/4.7.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-08 21:01:45\";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/4.8.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:28:04\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-27 19:10:04\";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/4.8.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:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 06:22:33\";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/4.8.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:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-23 12:13:52\";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/4.8.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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 06:24:08\";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/4.8.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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-23 09:23:18\";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/4.8.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: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:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:51:51\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 10:03:08\";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/4.8.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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 19:47:01\";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/4.8.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:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";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/4.7.5/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 17:31:04\";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/4.8.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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-02 03:57:05\";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/4.8.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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 10:38:53\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 16:09:17\";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/4.8.1/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-27 12:42:17\";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/4.8.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-13 17:00:30\";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/4.8.1/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;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:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;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:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";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/4.7.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-01 04:48:11\";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/4.8.1/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 15:12:02\";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/4.8.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-28 12:06:36\";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/4.8.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:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-09 15:50:45\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 11:00:29\";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/4.8.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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 09:14:18\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-26 13:33:05\";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/4.8.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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:37:07\";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/4.8.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: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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 12:45:35\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-31 06:54:10\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.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:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";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:62:\"https://downloads.wordpress.org/translation/core/4.4.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-18 00:52:02\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:29:26\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.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:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-22 17:25:42\";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/4.8.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:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";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/4.7.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:45:08\";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/4.8.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:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-04 08:42:00\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 23:23:50\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-12 09:20:11\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-22 15:33:00\";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/4.8.1/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:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:48:16\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";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/4.7.2/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: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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 11:02:15\";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/4.8.1/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:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";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/4.7.5/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:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 19:40:47\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/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:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-05 09:45:10\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/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.1.18\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";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.1.18/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-02 21:02:39\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 08:47:10\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.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_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-27 16:44:39\";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/4.8.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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-30 07:58:32\";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/4.8.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_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-17 08:10:48\";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/4.8.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:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-01 07:32:10\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/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:5:\"4.8.1\";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:62:\"https://downloads.wordpress.org/translation/core/4.8.1/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:7:\"Punjabi\";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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-28 16:21:03\";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/4.8.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.1.18\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";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.1.18/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_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 21:35:20\";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/4.8.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:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-09-01 16:40:06\";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/4.8.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: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:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:26:15\";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/4.8.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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-29 20:32:20\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.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: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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-09 13:26:18\";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/4.8.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:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:03:23\";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/4.8.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:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-24 08:35:30\";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/4.7.5/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:07:44\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 22:53:12\";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/4.8.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: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: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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 11:38:12\";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/4.8.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:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-10 15:50: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/4.8.1/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:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:27:29\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/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:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-09-01 20:59:16\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/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:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-19 01:07:53\";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/4.8.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 15:43:25\";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/4.8.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_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-04 07:53:05\";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/4.8.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_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-14 16:47:28\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/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'),(167,'WPLANG','','yes'),(170,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(13244,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1507183297','no'),(13245,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4384;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2511;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2369;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2329;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1837;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1605;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1599;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1439;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1355;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1354;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1346;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1278;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1272;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1141;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1058;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1050;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:998;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:954;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:823;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:820;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:816;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:777;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:772;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:670;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:670;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:664;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:655;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:649;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:647;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:638;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:627;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:615;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:598;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:591;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:587;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:585;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:580;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:578;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:562;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:559;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:545;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:535;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:526;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:519;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:507;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:502;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:497;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:491;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:477;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:476;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:475;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:471;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:452;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:448;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:442;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:441;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:440;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:439;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:422;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:417;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:411;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:408;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:406;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:405;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:403;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:398;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:389;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:383;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:381;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:371;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:356;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:344;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:339;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:333;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:332;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:332;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:332;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:330;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:328;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:327;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:324;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:323;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:323;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:318;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:307;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:301;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:300;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:294;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:293;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:292;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:290;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:287;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:284;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:283;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:280;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:278;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:276;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:275;}s:7:\"tinymce\";a:3:{s:4:\"name\";s:7:\"tinyMCE\";s:4:\"slug\";s:7:\"tinymce\";s:5:\"count\";i:273;}s:7:\"captcha\";a:3:{s:4:\"name\";s:7:\"captcha\";s:4:\"slug\";s:7:\"captcha\";s:5:\"count\";i:271;}}','no'),(8636,'far_plugin_settings','a:2:{s:7:\"farfind\";a:1:{i:1;s:6:\"Town *\";}s:10:\"farreplace\";a:1:{i:1;s:6:\"City *\";}}','yes'),(189,'_wpa_admin_notes','a:1:{s:21:\"WPAutoloader\\AutoLoad\";a:0:{}}','yes'),(191,'hide_all_singular_titles_css','0','yes'),(192,'hide_all_singular_titles','0','yes'),(193,'hide_also_singular_title_for','','yes'),(190,'_wpa_admin_errors','a:0:{}','yes'),(263,'wpseo','a:25:{s:14:\"blocking_files\";a:1:{i:0;s:53:\"/home/avidwe5/public_html/rasburytech.com/sitemap.xml\";}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:3:\"5.8\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:28:\"Rasbury Technology Solutions\";s:17:\"company_or_person\";s:7:\"company\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:34:\"Rasbury Technology Solutions | RTS\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:20:\"enable_setting_pages\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1487916812;}','yes'),(2854,'widget_captainform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2855,'captainform_installation_id','58ecf7c41OC73.admin@rasburytech.com','no'),(2856,'captainform_installation_key','dacb561b19d9c502c7423e732ae9753f','no'),(323,'category_children','a:0:{}','yes'),(1337,'siteorigin_widgets_active','a:14:{s:6:\"button\";b:1;s:10:\"google-map\";b:1;s:5:\"image\";b:1;s:6:\"slider\";b:1;s:13:\"post-carousel\";b:1;s:6:\"editor\";b:1;s:8:\"features\";b:1;s:3:\"cta\";b:1;s:7:\"contact\";b:1;s:4:\"hero\";b:1;s:8:\"headline\";b:1;s:10:\"image-grid\";b:1;s:11:\"price-table\";b:1;s:5:\"video\";b:1;}','yes'),(13580,'widget_sow-contact-form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13581,'widget_sow-hero','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13582,'widget_sow-headline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(258,'widget_black-studio-tinymce','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(223,'widget_sow-button','a:7:{i:2;a:8:{s:4:\"text\";s:13:\"Open A Ticket\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:16:\"fontawesome-edit\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ddc512f0ed3\";s:19:\"_sow_form_timestamp\";s:13:\"1498590971616\";s:10:\"new_window\";b:0;}i:3;a:8:{s:4:\"text\";s:14:\"Make A Payment\";s:3:\"url\";s:9:\"post: 628\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:21:\"fontawesome-cc-stripe\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ddc512f0ed3\";s:19:\"_sow_form_timestamp\";s:0:\"\";s:10:\"new_window\";b:0;}i:4;a:7:{s:4:\"text\";s:14:\"Remote Support\";s:3:\"url\";s:9:\"post: 332\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:20:\"fontawesome-compress\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58de8b982ab25\";s:10:\"new_window\";b:0;}i:5;a:7:{s:4:\"text\";s:15:\"Job Oppotunites\";s:3:\"url\";s:9:\"post: 508\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:16:\"fontawesome-user\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58fe55e08b1f1\";s:10:\"new_window\";b:0;}i:6;a:7:{s:4:\"text\";s:20:\"Submit Google Review\";s:3:\"url\";s:54:\"https://www.google.com/#q=rasbury+technology+solutions\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:18:\"fontawesome-google\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"5925d5932423e\";}i:7;a:8:{s:4:\"text\";s:14:\"Affiliate Home\";s:3:\"url\";s:9:\"post: 716\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:15:\"fontawesome-usd\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";s:5:\"270px\";s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"59a4a99077022\";s:19:\"_sow_form_timestamp\";s:13:\"1503963808239\";s:10:\"new_window\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(224,'widget_sow-google-map','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'widget_sow-image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(226,'widget_sow-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(227,'widget_sow-post-carousel','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(228,'widget_sow-editor','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(229,'siteorigin_widget_bundle_version','1.11.0','yes'),(230,'siteorigin_widgets_old_widgets','/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/accordion/accordion.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/button/button.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/cta/cta.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/contact/contact.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/editor/editor.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/features/features.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/google-map/google-map.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/headline/headline.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/hero/hero.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/icon/icon.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/image/image.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/image-grid/image-grid.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/slider/slider.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/layout-slider.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/post-carousel.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/price-table/price-table.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/tabs/tabs.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/taxonomy/taxonomy.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/testimonial/testimonial.php,/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/video/video.php','yes'),(234,'siteorigin_panels_settings','a:0:{}','yes'),(235,'widget_siteorigin-panels-post-content','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(236,'widget_siteorigin-panels-postloop','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(237,'widget_siteorigin-panels-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(240,'txfx_plt_schema_version','3','yes'),(1340,'widget_sow-features','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(243,'wordfence_version','6.3.21','yes'),(11490,'_site_transient_timeout_browser_792023cda893a89c4cd363935f32b00a','1505487233','no'),(11491,'_site_transient_browser_792023cda893a89c4cd363935f32b00a','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.101\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(245,'wordfenceActivated','1','yes'),(246,'wf_plugin_act_error','','yes'),(305,'wordfence_syncAttackDataAttempts','0','no'),(306,'wordfence_syncingAttackData','0','no'),(307,'wordfence_lastSyncAttackData','1516081776','no'),(264,'wpseo_permalinks','a:9:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),(265,'wpseo_titles','a:54:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:15:\"usemetakeywords\";b:0;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:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;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:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;}','yes'),(266,'wpseo_social','a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"7fb782081ef40acf1e6171d0d6956243\";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:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(267,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(268,'wpseo_internallinks','a:10:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;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:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;}','yes'),(269,'wpseo_xml','a:23:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:0;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:36:\"user_role-stripe-user-not_in_sitemap\";b:0;s:46:\"user_role-wp_support_plus_agent-not_in_sitemap\";b:0;s:51:\"user_role-wp_support_plus_supervisor-not_in_sitemap\";b:0;s:34:\"user_role-sa_client-not_in_sitemap\";b:0;s:35:\"user_role-lcp_member-not_in_sitemap\";b:0;s:34:\"user_role-lcp_admin-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:42:\"post_types-captainform_post-not_in_sitemap\";b:0;}','yes'),(270,'wpseo_flush_rewrite','1','yes'),(1949,'wpsp_ticket_open_page_shortcode','272','yes'),(342,'wpseo_sitemap_203_cache_validator','27a2T','no'),(273,'wpseo_sitemap_1_cache_validator','qvdO','no'),(274,'wpseo_sitemap_page_cache_validator','w3Y1','no'),(318,'wpseo_taxonomy_meta','a:1:{s:8:\"category\";a:1:{i:3;a:2:{s:13:\"wpseo_linkdex\";s:2:\"15\";s:19:\"wpseo_content_score\";s:2:\"30\";}}}','yes'),(320,'wpseo_sitemap_post_cache_validator','qvdR','no'),(333,'wpseo_sitemap_post_format_cache_validator','6QlwU','no'),(335,'wpseo_sitemap_197_cache_validator','26Dxp','no'),(338,'wpseo_sitemap_199_cache_validator','7GoO','no'),(340,'wpseo_sitemap_201_cache_validator','26ZHg','no'),(346,'wpseo_sitemap_205_cache_validator','2amoe','no'),(352,'wpseo_sitemap_211_cache_validator','2bQ5m','no'),(354,'wpseo_sitemap_213_cache_validator','2c5Ts','no'),(389,'string-locator-search-overview','s:264:\"O:8:\"stdClass\":5:{s:9:\"scan_path\";O:8:\"stdClass\":3:{s:4:\"path\";s:42:\"/home/avidwe5/public_html/rasburytech.com/\";s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:0:\"\";}s:6:\"search\";s:19:\"WP Booking Calendar\";s:9:\"directory\";s:4:\"core\";s:6:\"chunks\";i:13;s:5:\"regex\";s:5:\"false\";}\";','yes'),(390,'string-locator-search-history','s:1167:\"a:1:{i:0;a:7:{s:2:\"ID\";i:1;s:7:\"linenum\";i:500;s:4:\"path\";s:101:\"/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/booking/core/lib/wpdev-booking-class.php\";s:8:\"filename\";s:404:\"<a href=\"http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&#038;edit-file=wpdev-booking-class.php&#038;file-reference=booking&#038;file-type=plugin&#038;string-locator-line=500&#038;string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2Fbooking%2Fcore%2Flib%2Fwpdev-booking-class.php\">wp-content/plugins/booking/core/lib/wpdev-booking-class.php</a>\";s:12:\"filename_raw\";s:59:\"wp-content/plugins/booking/core/lib/wpdev-booking-class.php\";s:7:\"editurl\";s:305:\"http://www.rasburytech.com/wp-admin/tools.php?page=string-locator&edit-file=wpdev-booking-class.php&file-reference=booking&file-type=plugin&string-locator-line=500&string-locator-path=%2Fhome%2Favidwe5%2Fpublic_html%2Frasburytech.com%2Fwp-content%2Fplugins%2Fbooking%2Fcore%2Flib%2Fwpdev-booking-class.php\";s:12:\"stringresult\";s:125:\"&hellip;dar.com&quot; target=&quot;_blank&quot;&gt;<strong>WP Booking Calendar</strong>&lt;/a&gt;&lt;/div&gt;&#039;;\n&hellip;\";}}\";','no'),(1755,'direct_stripe_general_settings','a:13:{s:33:\"direct_stripe_publishable_api_key\";s:32:\"pk_live_uobesm2npdRdgNw0TtfkidA8\";s:28:\"direct_stripe_secret_api_key\";s:32:\"sk_live_Nf1fxU07KTCPRPkolgjSEuE2\";s:38:\"direct_stripe_test_publishable_api_key\";s:32:\"pk_test_5D6ej7TK9liCMi99N601i2sN\";s:33:\"direct_stripe_test_secret_api_key\";s:32:\"sk_test_6hVvgNfuNIwSRoDKASvMkQTp\";s:22:\"direct_stripe_currency\";s:3:\"usd\";s:29:\"direct_stripe_success_message\";s:22:\"Successful transaction\";s:27:\"direct_stripe_error_message\";s:23:\"Something went wrong...\";s:30:\"direct_stripe_use_redirections\";s:1:\"1\";s:26:\"direct_stripe_success_page\";s:3:\"258\";s:24:\"direct_stripe_error_page\";s:3:\"261\";s:24:\"direct_stripe_logo_image\";s:0:\"\";s:36:\"direct_stripe_billing_infos_checkbox\";s:1:\"1\";s:40:\"direct_stripe_rememberme_option_checkbox\";s:1:\"1\";}','yes'),(1732,'wpseo_sitemap_226_cache_validator','jqOs','no'),(1733,'wpseo_sitemap_227_cache_validator','jqOv','no'),(1734,'wpseo_sitemap_232_cache_validator','jqOx','no'),(1735,'wpseo_sitemap_251_cache_validator','jqOF','no'),(1764,'wpseo_sitemap_259_cache_validator','CJkB','no'),(1765,'wpseo_sitemap_262_cache_validator','CJkL','no'),(1410,'widget_cl-counter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1411,'widget_cl-flipbox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1412,'widget_cl-ib','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1413,'widget_cl-itext','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1414,'widget_cl-popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1415,'widget_cl-review','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(409,'wpseo_sitemap_cache_validator_global','vv6n','no'),(3125,'_x_content','','yes'),(1966,'wpseo_sitemap_271_cache_validator','Pl22','no'),(1967,'wpseo_sitemap_273_cache_validator','Pl24','no'),(1968,'wpseo_sitemap_275_cache_validator','Pl25','no'),(13561,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1508071478','no'),(13562,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Oct 2017 06:29:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.9-beta2-41860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.9 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Oct 2017 06:29:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4946\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"WordPress 4.9 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1651:\"<p>WordPress 4.9 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.9-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=41846&amp;stop_rev=41777&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">70 changes</a> in Beta 2.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Let’s test all of these:</em><br />\n<em>code editing, theme switches,</em><br />\n<em>widgets, scheduling.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.9 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Oct 2017 05:54:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4926\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.9 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9159:\"<p>WordPress 4.9 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.9-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.9 is slated for release on <a href=\"https://make.wordpress.org/core/4-9/\">November 14</a>, but we need your help to get there. We’ve been working on making it even easier to customize your site. Here are some of the bigger items to test and help us find as many bugs as possible in the coming weeks:</p>\n<ul>\n<li>Drafting (<a href=\"https://core.trac.wordpress.org/ticket/39896\">#39896</a>) and scheduling (<a href=\"https://core.trac.wordpress.org/ticket/28721\">#28721</a>) of changes in the Customizer. Once you save or schedule a changeset, when any user comes into the Customizer the pending changes will be autoloaded. A button is provided to discard changes to restore the Customizer to the last published state. (This is a new “linear” mode for changesets, as opposed to “branching” mode which can be enabled by filter so that every time  user opens the Customizer a new blank changeset will be started.)</li>\n<li>Addition of a frontend preview link to the Customizer to allow changes to be browsed on the frontend, even without a user being logged in (<a href=\"https://core.trac.wordpress.org/ticket/39896\">#39896</a>).</li>\n<li>Addition of autosave revisions in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/39275\">#39275</a>).</li>\n<li>A brand new theme browsing experience in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/37661\">#37661</a>).</li>\n<li>Gallery widget (<a href=\"https://core.trac.wordpress.org/ticket/41914\">#41914</a>), following the media and image widgets introduced in 4.8.</li>\n<li>Support for shortcodes in Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/10457\">#10457</a>).</li>\n<li>Support for adding media to Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/40854\">#40854</a>).</li>\n<li>Support for adding oEmbeds outside post content, including Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/34115\">#34115</a>).</li>\n<li>Support for videos from providers other than YouTube and Vimeo in the Video widget (<a href=\"https://core.trac.wordpress.org/ticket/42039\">#42039</a>)</li>\n<li>Improve the flow for creating new menus in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/40104\">#40104</a>).</li>\n<li>Educated guess mapping of nav menus and widgets when switching themes (<a href=\"https://core.trac.wordpress.org/ticket/39692\">#39692</a>).</li>\n<li>Plugins: Introduce singular capabilities for activating and deactivating individual plugins (<a href=\"https://core.trac.wordpress.org/ticket/38652\">#38652</a>).</li>\n<li>Sandbox PHP file edits in both plugins and themes, without auto-deactivation when an error occurs; a PHP edit that introduces a fatal error is rolled back with an opportunity then for the user to fix the error and attempt to re-save. (<a href=\"https://core.trac.wordpress.org/ticket/21622\">#21622</a>).</li>\n<li>Addition of dirty state for widgets on the admin screen, indicating when a widget has been successfully saved and showing an “Are you sure?” dialog when attempting to leave without saving changes. (<a href=\"https://core.trac.wordpress.org/ticket/23120\">#23120</a>, <a href=\"https://core.trac.wordpress.org/ticket/41610\">#41610</a>)</li>\n</ul>\n<p>As always, there have been exciting changes for developers to explore as well, such as:</p>\n<ul>\n<li>CodeMirror editor added to theme/plugin editor, Custom CSS in Customizer, and Custom HTML widgets. Integration includes support for linters to catch errors before you attempt to save. Includes new APIs for plugins to instantiate editors. (<a href=\"https://core.trac.wordpress.org/ticket/12423\">#12423</a>)</li>\n<li>Introduction of an extensible code editor control for adding instances of CodeMirror to the Customizer. (<a href=\"https://core.trac.wordpress.org/ticket/41897\">#41897</a>)</li>\n<li>Addition of global notifications area (<a href=\"https://core.trac.wordpress.org/ticket/35210\">#35210</a>), panel and section notifications (<a href=\"https://core.trac.wordpress.org/ticket/38794\">#38794</a>), and a notification overlay that takes over the entire screen in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/37727\">#37727</a>).</li>\n<li>A date/time control in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/42022\">#42022</a>).</li>\n<li>Improve usability of Customize JS API (<a href=\"https://core.trac.wordpress.org/ticket/42083\">#42083</a>, <a href=\"https://core.trac.wordpress.org/ticket/37964\">#37964</a>, <a href=\"https://core.trac.wordpress.org/ticket/36167\">#36167</a>).</li>\n<li>Introduction of control templates for base controls (<a href=\"https://core.trac.wordpress.org/ticket/30738\">#30738</a>).</li>\n<li>Use WP_Term_Query when transforming tax queries (<a href=\"https://core.trac.wordpress.org/ticket/37038\">#37038</a>).</li>\n<li>Database: Add support for MySQL servers connecting to IPv6 hosts (<a href=\"https://core.trac.wordpress.org/ticket/41722\">#41722</a>).</li>\n<li>Emoji: Bring Twemoji compatibility to PHP (<a href=\"https://core.trac.wordpress.org/ticket/35293\">#35293</a>). Test for any weirdness with emoji in RSS feeds or emails.</li>\n<li>I18N: Introduce the Plural_Forms class (<a href=\"https://core.trac.wordpress.org/ticket/41562\">#41562</a>).</li>\n<li>Media: Upgrade MediaElement.js to 4.2.5-74e01a40 (<a href=\"https://core.trac.wordpress.org/ticket/39686\">#39686</a>).</li>\n<li>Media: Use max-width for default captions (<a href=\"https://core.trac.wordpress.org/ticket/33981\">#33981</a>). We will want to make sure this doesn’t cause unexpected visual regressions in existing themes, default themes were all fine in testing.</li>\n<li>Media: Reduce duplicated custom header crops in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/21819\">#21819</a>).</li>\n<li>Media: Store video creation date in meta (<a href=\"https://core.trac.wordpress.org/ticket/35218\">#35218</a>). Please help test different kinds of videos.</li>\n<li>Multisite: Introduce get_site_by() (<a href=\"https://core.trac.wordpress.org/ticket/40180\">#40180</a>).</li>\n<li>Multisite: Improve get_blog_details() by using get_site_by() (<a href=\"https://core.trac.wordpress.org/ticket/40228\">#40228</a>).</li>\n<li>Multisite: Improve initializing available roles when switch sites (<a href=\"https://core.trac.wordpress.org/ticket/38645\">#38645</a>).</li>\n<li>Multisite: Initialize a user&#8217;s roles correctly when setting them up for a different site (<a href=\"https://core.trac.wordpress.org/ticket/36961\">#36961</a>).</li>\n<li>REST API: Support registering complex data structures for settings and meta</li>\n<li>REST API: Support for objects in schema validation and sanitization (<a href=\"https://core.trac.wordpress.org/ticket/38583\">#38583</a>)</li>\n<li>Role/Capability: Introduce capabilities dedicated to installing and updating language files (<a href=\"https://core.trac.wordpress.org/ticket/39677\">#39677</a>).</li>\n<li>Remove SWFUpload (<a href=\"https://core.trac.wordpress.org/ticket/41752\">#41752</a>).</li>\n<li>Users: Require a confirmation link in an email to be clicked when a user attempts to change their email address (<a href=\"https://core.trac.wordpress.org/ticket/16470\">#16470</a>).</li>\n<li>Core and the unit test suite is fully compatible with the upcoming release of PHP 7.2</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.9, <a href=\"https://make.wordpress.org/core/tag/4-9/\">check out posts tagged with 4.9 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.9&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><b>If you think you’ve found a bug</b>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><i>Without your testing,<br />\nwe might hurt the internet.<br />\nPlease help us find bugs.<img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></i></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress: September 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2017/10/the-month-in-wordpress-september-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Oct 2017 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4920\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"This has been an interesting month for WordPress, as a bold move on the JavaScript front brought the WordPress project to the forefront of many discussions across the development world. There have also been some intriguing changes in the WordCamp program, so read on to learn more about the WordPress community during the month of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5634:\"<p>This has been an interesting month for WordPress, as a bold move on the JavaScript front brought the WordPress project to the forefront of many discussions across the development world. There have also been some intriguing changes in the WordCamp program, so read on to learn more about the WordPress community during the month of September.</p>\n<hr />\n<h2>JavaScript Frameworks in WordPress</h2>\n<p>Early in the month, <a href=\"https://ma.tt/2017/09/on-react-and-wordpress/\">Matt Mullenweg announced</a> that WordPress will be switching away from React as the JavaScript library WordPress Core might use — this was in response to Facebook’s decision to keep a controversial patent clause in the library’s license, making many WordPress users uncomfortable.</p>\n<p>A few days later, <a href=\"https://ma.tt/2017/09/facebook-dropping-patent-clause/\">Facebook reverted the decision</a>, making React a viable option for WordPress once more. Still, the WordPress Core team is exploring a move <a href=\"https://github.com/WordPress/gutenberg/pull/2463\">to make WordPress framework-agnostic</a>, so that the framework being used could be replaced by any other framework without affecting the rest of the project.</p>\n<p>This is a bold move that will ultimately make WordPress core a lot more flexible, and will also protect it from potential license changes in the future.</p>\n<p>You can get involved in the JavaScript discussion by joining the #core-js channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">WordPress Core development blog</a>.</p>\n<h2>Community Initiative to Make WordCamps More Accessible</h2>\n<p>A WordPress community member, Ines van Essen, started a new nonprofit initiative to offer financial assistance to community members to attend WordCamps. <a href=\"https://donatewc.org/\">DonateWC</a> launched with a crowdsourced funding campaign to cover the costs of getting things up and running.</p>\n<p>Now that she’s raised the initial funds, Ines plans to set up a nonprofit organization and use donations from sponsors to help people all over the world attend and speak at WordCamps.</p>\n<p>If you would like to support the initiative, you can do so by <a href=\"https://donatewc.org/make-a-donation/\">donating through their website</a>.</p>\n<h2>The WordCamp Incubator Program Returns</h2>\n<p>Following the success of <a href=\"https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/\">the first WordCamp Incubator Program</a>, the Community Team is <a href=\"https://make.wordpress.org/community/2017/09/27/wordcamp-incubator-program-v2-new-role-name/\">bringing the program back</a> to assist more underserved cities in kick-starting their WordPress communities.</p>\n<p>The program’s first phase aims to find community members who will volunteer to mentor, assist, and work alongside local leaders in the incubator communities — this is a time-intensive volunteer role that would need to be filled by experienced WordCamp organizers.</p>\n<p>If you would like to be a part of this valuable initiative, join the #community-team channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and follow the <a href=\"https://make.wordpress.org/community/\">Community Team blog</a> for updates.</p>\n<h2>WordPress 4.8.2 Security Release</h2>\n<p>On September 19, <a href=\"https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/\">WordPress 4.8.2 was released to the world</a> — this was a security release that fixed nine issues in WordPress Core, making the platform more stable and secure for everyone.</p>\n<p>To get involved in building WordPress Core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further Reading:</h2>\n<ul>\n<li>The WordPress Meetup program hit a significant milestone this month — there are now 500 meetup groups in <a href=\"https://www.meetup.com/pro/wordpress/\">the official chapter program</a>.</li>\n<li>The SWFUpload library <a href=\"https://make.wordpress.org/core/2017/09/07/removing-swfupload/\">will be removed from WordPress Core</a> in version 4.9, scheduled for release in mid-November.</li>\n<li>Matías Ventura put together some useful videos on <a href=\"https://make.wordpress.org/core/2017/08/31/gutenberg-themes/\">how theme developers can integrate Gutenberg into their work</a>.</li>\n<li><a href=\"http://applyfilters.fm/\"><i>Apply Filters</i></a>, the popular WordPress development podcast, will go on hiatus after the upcoming 83rd episode.</li>\n<li>The WordPress Plugin Directory <a href=\"https://make.wordpress.org/plugins/2017/09/04/plugin-support-reps/\">has added the ability</a> for plugin owners to assign plugin support representatives.</li>\n<li>After a couple of slower development weeks, <a href=\"https://make.wordpress.org/core/2017/09/27/whats-new-in-gutenberg-1-2-1/\">Gutenberg v1.2 is out</a> and it’s looking better than ever.</li>\n<li>The third <a href=\"https://wordpress.org/news/2017/09/global-wordpress-translation-day-3/\">Global WordPress Translation Day</a> took place this past weekend — keep an eye on <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> for updates.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Global WordPress Translation Day 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2017/09/global-wordpress-translation-day-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 11:56:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:32:\"global wordpress translation day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"polyglots\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4915\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"On September 30 2017, the WordPress Polyglots Team &#8211; whose mission is to translate WordPress into as many languages as possible &#8211; will hold its third Global WordPress Translation Day, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, today, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4124:\"<p><span style=\"font-weight: 400\">On September 30 2017, the WordPress Polyglots Team &#8211; whose mission is to translate WordPress into as many languages as possible &#8211; will hold its third <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day</a>, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, today, over 28% of all existing websites.</span></p>\n<p><span style=\"font-weight: 400\">The localisation process allows for WordPress and for all WordPress-related products (themes and plugins) to be available in local languages, so to improve their accessibility and usage and to allow as many people as possible to take advantage of the free platform and services available.</span></p>\n<p><span style=\"font-weight: 400\">In a (not completely) serendipitous coincidence, September 30 has also been declared by the United Nations “International Translation Day”, to pay homage to the great services of translators everywhere, one that allows communication and exchange.</span></p>\n<p><span style=\"font-weight: 400\">The event will feature a series of multi-language live speeches (training sessions, tutorials, case histories, etc.) that will be screen-casted in streaming, starting from Australia and the Far East and ending in the Western parts of the United States.</span></p>\n<p><span style=\"font-weight: 400\">In that same 24-hour time frame, Polyglots worldwide will gather physically in local events, for dedicated training and translations sprints (and for some fun and socializing as well), while those unable to physically join their teams will do so remotely.</span></p>\n<p><span style=\"font-weight: 400\">A big, fun, useful and enlightening party and a lovely mix of growing, giving, learning and teaching, to empower, and cultivate, and shine.</span></p>\n<p><span style=\"font-weight: 400\">Here are some stats about the first two events:</span></p>\n<p><b>Global WordPress Translation Day 1</b></p>\n<ul>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">448 translators worldwide</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">50 local events worldwide</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">54 locales involved</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">40350 strings translated, in</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">597 projects</span></li>\n</ul>\n<p><b>Global WordPress Translation Day 2</b></p>\n<ul>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">780 translators worldwide</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">67 local events worldwide</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">133 locales involved</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">60426 strings translated, in</span></li>\n<li><span style=\"font-weight: 400\">   </span><span style=\"font-weight: 400\">590 projects</span></li>\n</ul>\n<p><span style=\"font-weight: 400\">We would like your help in spreading this news and in reaching out to all four corners of the world to make the third #WPTranslationDay a truly amazing one and to help celebrate the unique and fundamental role that translators have in the Community but also in all aspects of life.</span></p>\n<p><span style=\"font-weight: 400\">A full press release is available, along with more information and visual assets at </span><a href=\"https://wptranslationday.org/press/\"><span style=\"font-weight: 400\">wptranslationday.org/press</span></a>.</p>\n<p><span style=\"font-weight: 400\">For any additional information please don’t hesitate to contact the event team on </span><a href=\"mailto:press@wptranslationday.org\"><span style=\"font-weight: 400\">press@wptranslationday.org</span></a><span style=\"font-weight: 400\">.</span></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.8.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Sep 2017 22:17:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4909\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"WordPress 4.8.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.8.1 and earlier are affected by these security issues: $wpdb-&#62;prepare() can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2844:\"<p>WordPress 4.8.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.8.1 and earlier are affected by these security issues:</p>\n<ol>\n<li><code>$wpdb-&gt;prepare()</code> can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this issue, but we&#8217;ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://hackerone.com/slavco\">Slavco</a></li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the oEmbed discovery. Reported by xknown of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the visual editor. Reported by <a href=\"https://twitter.com/brutelogic\">Rodolfo Assis (@brutelogic)</a> of Sucuri Security.</li>\n<li>A path traversal vulnerability was discovered in the file unzipping code. Reported by <a href=\"https://hackerone.com/noxrnet\">Alex Chapman (noxrnet)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the plugin editor. Reported by 陈瑞琦 (Chen Ruiqi).</li>\n<li>An open redirect was discovered on the user and term edit screens. Reported by <a href=\"https://hackerone.com/ysx\">Yasin Soliman (ysx)</a>.</li>\n<li>A path traversal vulnerability was discovered in the customizer. Reported by Weston Ruter of the WordPress Security Team.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in template names. Reported by <a href=\"https://hackerone.com/sikic\">Luka (sikic)</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the link modal. Reported by <a href=\"https://hackerone.com/qasuar\">Anas Roubi (qasuar)</a>.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.8.2 contains 6 maintenance fixes to the 4.8 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.8.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.8.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.2.</p>\n<p>Thanks to everyone who contributed to 4.8.2.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4909\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress: August 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2017/09/the-month-in-wordpress-august-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Sep 2017 10:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4899\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August. The Global WordPress Translation [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6496:\"<p>While there haven’t been any major events or big new developments in the WordPress world this past month, a lot of work has gone into developing a sustainable future for the project. Read on to find out more about this and other interesting news from around the WordPress world in August.</p>\n<hr />\n<h2>The Global WordPress Translation Day Returns</h2>\n<p>On September 30, the WordPress Polyglots team will be holding <a href=\"https://wptranslationday.org/\">the third Global WordPress Translation Day</a>. This is a 24-hour global event dedicated to the translation of the WordPress ecosystem (core, themes, plugins), and is a mix of physical, in-person translation work with online streaming of talks from WordPress translators all over the world.</p>\n<p>Meetup groups will be holding events where community members will come together to translate WordPress. To get involved in this worldwide event, <a href=\"https://www.meetup.com/pro/wordpress/\">join your local meetup group</a> or, if one is not already taking place in your area, organize one for your community.</p>\n<p>You can find out more information <a href=\"https://wptranslationday.org/global-wordpress-translation-day-3/\">on the Translation Day blog</a> and in the #polyglots-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress Foundation to Run Open Source Training Worldwide</h2>\n<p>The WordPress Foundation is a non-profit organization that exists to provide educational events and resources for hackathons, support of the open web, and promotion of diversity in the global open source community.</p>\n<p>In an effort to push these goals forward, <a href=\"http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/\">the Foundation is going to be offering assistance</a> to communities who would like to run local open source training workshops. A number of organizers have applied to be a part of this initiative, and the Foundation will be selecting two communities in the coming weeks.</p>\n<p>Follow <a href=\"http://wordpressfoundation.org/news/\">the WordPress Foundation blog</a> for updates.</p>\n<h2>Next Steps in WordPress Core’s PHP Focus</h2>\n<p>After <a href=\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\">last month’s</a> push to focus on WordPress core’s PHP development, a number of new initiatives have been proposed and implemented. The first of these initiatives is a page on WordPress.org that will educate users on the benefits of upgrading PHP. The page and its implementation are still in development, so <a href=\"https://github.com/WordPress/servehappy\">you can follow and contribute on GitHub</a>.</p>\n<p>Along with this, <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\">plugin developers are now able to specify</a> the minimum required PHP version for their plugins. This version will then be displayed on the Plugin Directory page, but it will not (yet) prevent users from installing it.</p>\n<p>The next evolution of this is for the minimum PHP requirement to be enforced so that plugins will only work if that requirement is met. You can assist with this implementation by contributing your input or a patch on <a href=\"https://core.trac.wordpress.org/ticket/40934\">the open ticket</a>.</p>\n<p>As always, discussions around the implementation of PHP in WordPress core are done in the #core-php channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>New Editor Development Continues</h2>\n<p>For a few months now, the core team has been steadily working on Gutenberg, the new editor for WordPress core. While Gutenberg is still in development and is some time away from being ready, a huge amount of progress has already been made. In fact, <a href=\"https://make.wordpress.org/core/2017/08/29/whats-new-in-gutenberg-august-29/\">v1.0.0 of Gutenberg</a> was released this week.</p>\n<p>The new editor is available as a plugin <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">for testing</a> and <a href=\"https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/\">the proposed roadmap</a> is for it to be merged into core in early 2018. You can get involved in the development of Gutenberg by joining the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">WordPress Core development blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>On the topic of Gutenberg, <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">Matt Mullenweg wrote a post</a> to address some of the concerns that the community has expressed about the new editor.</li>\n<li><a href=\"http://hookrefineandtinker.com/2017/08/jaiwp-an-alternative-project-to-wordcamp-india/\">A new movement has started</a> in the Indian WordPress community named JaiWP — the organizers are seeking to unite and motivate the country’s many local communities.</li>\n<li><a href=\"https://richtabor.com/merlin-wp/\">Merlin WP</a> is a new plugin offering theme developers an easy way to onboard their users.</li>\n<li>Ryan McCue posted <a href=\"https://make.wordpress.org/core/2017/08/23/rest-api-roadmap/\">an ambitious roadmap</a> for the future of the WordPress REST API — many contributions from the community will be needed in order to reach these goals.</li>\n<li>Want to know what you can expect in the next major release of WordPress? <a href=\"https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/\">Here’s a look</a> at what the core team is planning for v4.9.</li>\n<li>To help combat the difficulties that Trac presents to WordPress Core contributors, Ryan McCue built an alternative platform dubbed <a href=\"https://github.com/rmccue/not-trac\">Not Trac</a>.</li>\n<li><a href=\"https://make.wordpress.org/cli/2017/08/08/version-1-3-0-released/\">v1.3.0 of WP-CLI was released</a> earlier in the month, adding a whole lot of great new features to the useful tool.</li>\n</ul>\n<p><i><span style=\"font-weight: 400\">If you have a story we should consider including in the next &#8220;Month in WordPress&#8221; post, please </span></i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i><span style=\"font-weight: 400\">submit it here</span></i></a><i><span style=\"font-weight: 400\">.</span></i></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4875\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release. This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2560:\"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>, the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.8.1&amp;group=component\">tickets closed</a>, and the <a href=\"https://core.trac.wordpress.org/log/branches/4.8?rev=41210&amp;stop_rev=40891\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev/\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/greuben/\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sa3idho/\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 07:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4885\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"After a particularly busy month in June, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July. Weekly meeting for new core [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5644:\"<p>After a particularly busy month <a href=\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href=\"https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/\">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href=\"https://www.meetup.com/pro/wordpress/\">meetup chapter program</a>, as well as the <a href=\"https://central.wordcamp.org/schedule\">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href=\"https://www.meetup.com/pro/wordpress/\">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href=\"https://make.wordpress.org/community/meetups/\">on the Community Team site</a> or by joining the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href=\"https://make.wordpress.org/core/handbook/testing/beta/\">beta testing guide</a> for WordPress core. To get further involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed &#8211; one <a href=\"https://core.trac.wordpress.org/ticket/41191\">to provide a notice to users</a> and another to <a href=\"https://core.trac.wordpress.org/ticket/40934\">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href=\"https://make.wordpress.org/design/2017/07/14/whywordpress2/\">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\">in continual development</a> — everyone is invited to <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href=\"https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/\">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">are now open</a>.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4885\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2017 11:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4865\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other general [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9225:\"<p><i>We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned &#8211; they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg&#8217;s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&amp;A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style=\"font-weight: 400\">Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style=\"font-weight: 400\">A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style=\"font-weight: 400\">The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li style=\"font-weight: 400\">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style=\"font-weight: 400\">The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style=\"font-weight: 400\">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style=\"font-weight: 400\">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.8 “Evans”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2017/06/evans/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Jun 2017 14:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4770\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:43013:\"<h2 style=\"text-align: center\">An Update with You in Mind</h2>\n<p><img class=\"aligncenter size-large wp-image-4816\" src=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&#038;ssl=1\" alt=\"\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style=\"text-align: center\">Exciting Widget Updates</h2>\n<p><img class=\"size-large wp-image-4776 aligncenter\" src=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&#038;ssl=1\" alt=\"\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style=\"text-align: center\">Link Boundaries</h2>\n<div id=\"v-8BDWH3QG-1\" class=\"video-player\"><video id=\"v-8BDWH3QG-1-video\" width=\"632\" height=\"342\" poster=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Link Boundaries\" src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342\" data-recalc-dims=\"1\" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can&#8217;t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style=\"text-align: center\">Nearby WordPress Events</h2>\n<p><img class=\"aligncenter wp-image-4779 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&amp;ssl=1 1126w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn&#8217;t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style=\"text-align: center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/\">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/\">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/\">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/\">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/\">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style=\"text-align: center\">The Squad</h2>\n<p>This release was led by <a href=\"https://matt.blog\">Matt</a> and <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann1978</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">M&#225;rio Valney</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href=\"https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip\">We&#8217;ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 15 Oct 2017 00:44:38 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 12 Oct 2017 06:29:32 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20130911163210\";}','no'),(13063,'booking_title_after_reservation_time','7000','yes'),(13064,'booking_type_of_thank_you_message','message','yes'),(13065,'booking_thank_you_page_URL','/thank-you','yes'),(13066,'booking_is_use_autofill_4_logged_user','Off','yes'),(13067,'booking_date_format','F j, Y','yes'),(13068,'booking_date_view_type','short','yes'),(13069,'booking_is_delete_if_deactive','Off','yes'),(13070,'booking_dif_colors_approval_pending','On','yes'),(13071,'booking_is_use_hints_at_admin_panel','On','yes'),(13072,'booking_is_not_load_bs_script_in_client','Off','yes'),(13073,'booking_is_not_load_bs_script_in_admin','Off','yes'),(13074,'booking_is_load_js_css_on_specific_pages','Off','yes'),(13075,'booking_is_show_system_debug_log','Off','yes'),(13076,'booking_pages_for_load_js_css','','yes'),(13077,'booking_type_of_day_selections','single','yes'),(13078,'booking_form_is_using_bs_css','On','yes'),(13079,'booking_form_format_type','vertical','yes'),(13080,'booking_form_field_active1','On','yes'),(13081,'booking_form_field_required1','On','yes'),(6536,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6537,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6538,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4190,'wpseo_sitemap_quote_status_cache_validator','NeuA','no'),(4191,'wpseo_sitemap_invoice_status_cache_validator','NeuB','no'),(5768,'_site_transient_timeout_browser_699dfc46f2edc5d25d73bee60c1bf7b9','1496535062','no'),(5769,'_site_transient_browser_699dfc46f2edc5d25d73bee60c1bf7b9','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4193,'wpseo_sitemap_sliced_invoice_cache_validator','25nj','no'),(4174,'sliced_business','a:4:{s:4:\"name\";s:3:\"RTS\";s:7:\"address\";s:53:\"Suite 5A-1204\n123 Somewhere Street\nYour City AZ 12345\";s:10:\"extra_info\";s:21:\"admin@rasburytech.com\";s:7:\"website\";s:26:\"http://www.rasburytech.com\";}','yes'),(4175,'sliced_general','a:5:{s:10:\"year_start\";s:2:\"07\";s:8:\"year_end\";s:2:\"06\";s:11:\"pre_defined\";s:108:\"\n1 | Web Design | 85 | Design work on the website\n1 | Web Development | 95 | Back end development of website\";s:6:\"footer\";s:131:\"Thanks for choosing <a href=\"http://www.rasburytech.com\">RTS</a> | <a href=\"mailto:admin@rasburytech.com\">admin@rasburytech.com</a>\";s:10:\"db_version\";s:1:\"3\";}','yes'),(4176,'sliced_payments','a:8:{s:15:\"currency_symbol\";s:1:\"$\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:8:\"decimals\";s:1:\"2\";s:3:\"tax\";s:2:\"10\";s:8:\"tax_name\";s:3:\"Tax\";s:12:\"payment_page\";i:536;}','yes'),(4177,'sliced_invoices','a:6:{s:5:\"terms\";s:100:\"Payment is due within 30 days from date of invoice. Late payment is subject to fees of 5% per month.\";s:3:\"css\";s:7:\"body {}\";s:6:\"number\";s:4:\"0001\";s:6:\"prefix\";s:4:\"INV-\";s:9:\"increment\";s:2:\"on\";s:8:\"template\";s:9:\"template1\";}','yes'),(4178,'sliced_quotes','a:8:{s:5:\"terms\";s:97:\"This is a fixed price quote. If accepted, we require a 25% deposit upfront before work commences.\";s:3:\"css\";s:7:\"body {}\";s:6:\"number\";s:4:\"0001\";s:6:\"prefix\";s:4:\"QUO-\";s:9:\"increment\";s:2:\"on\";s:8:\"template\";s:9:\"template1\";s:12:\"accept_quote\";s:2:\"on\";s:17:\"accept_quote_text\";s:135:\"**Please Note: After accepting this Quote an Invoice will be automatically generated. This will then become a legally binding contract.\";}','yes'),(4179,'sliced_emails','a:14:{s:4:\"from\";s:21:\"admin@rasburytech.com\";s:4:\"name\";s:3:\"RTS\";s:3:\"bcc\";s:2:\"on\";s:6:\"footer\";s:19:\"Copyright 2017. RTS\";s:23:\"quote_available_subject\";s:28:\"New quote %number% available\";s:25:\"invoice_available_subject\";s:30:\"New invoice %number% available\";s:31:\"payment_received_client_subject\";s:24:\"Thanks for your payment!\";s:24:\"payment_reminder_subject\";s:19:\"A friendly reminder\";s:23:\"quote_available_content\";s:110:\"Hi %client_first_name%,\n\n							You have a new quote available ( %number% ) which can be viewed at %link%.<br>\";s:25:\"invoice_available_content\";s:112:\"Hi %client_first_name%,\n\n							You have a new invoice available ( %number% ) which can be viewed at %link%.<br>\";s:31:\"payment_received_client_content\";s:123:\"Thanks for your payment, %client_first_name%.\n\nYour recent payment for %total% on invoice %number% has been successful.<br>\";s:24:\"payment_reminder_content\";s:116:\"Hi %client_first_name%,\n\nJust a friendly reminder that your invoice %number% for %total% %is_was% due on %due_date%.\";s:22:\"quote_available_button\";s:22:\"View this quote online\";s:24:\"invoice_available_button\";s:24:\"View this invoice online\";}','yes'),(4184,'quote_status_children','a:0:{}','yes'),(4189,'invoice_status_children','a:0:{}','yes'),(4310,'_site_transient_timeout_browser_4543a78580082505a88283f6188f57b1','1494186638','no'),(4233,'wpseo_sitemap_sa_invoice_cache_validator','dbTq','no'),(4200,'fs_active_plugins','O:8:\"stdClass\":2:{s:7:\"plugins\";a:1:{s:48:\"sprout-invoices/controllers/updates/freemius-sdk\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.1.7.3\";s:9:\"timestamp\";i:1493513207;s:11:\"plugin_path\";s:35:\"sprout-invoices/sprout-invoices.php\";}}s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:35:\"sprout-invoices/sprout-invoices.php\";s:8:\"sdk_path\";s:48:\"sprout-invoices/controllers/updates/freemius-sdk\";s:7:\"version\";s:7:\"1.1.7.3\";s:13:\"in_activation\";b:1;s:9:\"timestamp\";i:1493513207;}}','yes'),(4201,'fs_accounts','a:9:{s:11:\"plugin_data\";a:1:{s:15:\"sprout-invoices\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:96:\"/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/sprout-invoices/sprout-invoices.php\";}s:17:\"install_timestamp\";i:1493435300;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:7:\"1.1.7.3\";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:6:\"13.0.3\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:19:\"www.rasburytech.com\";s:9:\"server_ip\";s:13:\"172.78.237.21\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1493435300;s:7:\"version\";s:6:\"13.0.3\";}s:21:\"is_plugin_new_install\";b:1;s:16:\"uninstall_reason\";O:8:\"stdClass\":2:{s:2:\"id\";s:2:\"13\";s:4:\"info\";b:0;}s:14:\"has_trial_plan\";b:1;s:20:\"activation_timestamp\";i:1493512957;s:15:\"prev_is_premium\";b:0;s:22:\"install_sync_timestamp\";i:1493513207;}}s:13:\"file_slug_map\";a:1:{s:35:\"sprout-invoices/sprout-invoices.php\";s:15:\"sprout-invoices\";}s:7:\"plugins\";a:1:{s:15:\"sprout-invoices\";O:9:\"FS_Plugin\":15:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:15:\"Sprout Invoices\";s:4:\"slug\";s:15:\"sprout-invoices\";s:4:\"file\";s:35:\"sprout-invoices/sprout-invoices.php\";s:7:\"version\";s:6:\"13.0.3\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:7:\"is_live\";b:1;s:10:\"public_key\";s:32:\"pk_22ac32f2f35fd0e09e656f4671a0e\";s:10:\"secret_key\";N;s:2:\"id\";s:3:\"234\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"d05fe04fd43d87ecd3f1a6f84506ec6b\";s:13:\"admin_notices\";a:1:{s:15:\"sprout-invoices\";a:0:{}}s:5:\"plans\";a:1:{s:15:\"sprout-invoices\";a:1:{i:0;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"MjM0\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s: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\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:4:\"MzIw\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAxNi0wMy0xNSAxNzoxNzo0Mg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}s:5:\"sites\";a:1:{s:15:\"sprout-invoices\";O:7:\"FS_Site\":22:{s:4:\"slug\";N;s:7:\"site_id\";s:7:\"1798771\";s:9:\"plugin_id\";s:3:\"234\";s:7:\"user_id\";s:6:\"422488\";s:5:\"title\";s:3:\"RTS\";s:3:\"url\";s:26:\"http://www.rasburytech.com\";s:7:\"version\";s:6:\"13.0.3\";s:8:\"language\";s:5:\"en-US\";s:7:\"charset\";s:5:\"UTF-8\";s:16:\"platform_version\";s:5:\"4.7.4\";s:28:\"programming_language_version\";s:6:\"5.5.38\";s:4:\"plan\";O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:4:\"MjM0\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";N;s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s: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\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:4:\"MzIw\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAxNi0wMy0xNSAxNzoxNzo0Mg==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:0;s:10:\"public_key\";s:32:\"pk_4fcd0b2ace44f30cbf0a2cbf4009e\";s:10:\"secret_key\";s:32:\"sk_TWdQDe>lu0O^G85DqEea7Ha;8PLnj\";s:2:\"id\";s:6:\"514538\";s:7:\"updated\";s:19:\"2017-04-30 00:46:38\";s:7:\"created\";s:19:\"2017-04-30 00:42:36\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:5:\"users\";a:1:{i:422488;O:7:\"FS_User\":12:{s:5:\"email\";s:21:\"admin@rasburytech.com\";s:5:\"first\";s:8:\"mrasbury\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:11:\"customer_id\";N;s:5:\"gross\";i:0;s:10:\"public_key\";s:32:\"pk_3c361be28f0521ef138ce9ad3064a\";s:10:\"secret_key\";s:32:\"sk_;[TJ7rTK1zJGIW[q#_&GLQ~]cXGY.\";s:2:\"id\";s:6:\"422488\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2017-04-30 00:42:36\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:8:\"licenses\";a:1:{s:15:\"sprout-invoices\";a:1:{i:422488;b:0;}}}','yes'),(4202,'fs_api_cache','a:0:{}','yes'),(4208,'si_money_format','$2,377,927.00','yes'),(4205,'si_current_version','13.0.3','yes'),(4212,'default_submission_page','','yes'),(4213,'advanced_submission_integration_addon','','yes'),(4214,'si_invoices_perma_slug','sprout-invoice','yes'),(4207,'si_notifications','a:10:{s:17:\"estimate_received\";i:538;s:13:\"send_estimate\";i:539;s:12:\"send_invoice\";i:540;s:15:\"deposit_payment\";i:541;s:13:\"final_payment\";i:542;s:16:\"reminder_payment\";i:543;s:18:\"estimate_submitted\";i:544;s:17:\"accepted_estimate\";i:545;s:17:\"declined_estimate\";i:546;s:20:\"payment_notification\";i:547;}','yes'),(4215,'si_default_invoice_terms','We do expect payment within 30 days, so please process this invoice within that time. There will be a 1.5% interest charge per month on late invoices.','yes'),(4216,'si_default_invoice_notes','Thank you; we really appreciate your business.','yes'),(4217,'si_estimates_perma_slug','sprout-estimate','yes'),(4218,'si_default_estimate_terms','We do expect payment within 21 days, so please process this invoice within that time. There will be a 1.5% interest charge per month on late invoices.','yes'),(4219,'si_default_estimate_notes','Thank you; we really appreciate your business.','yes'),(4220,'si_notification_name','RTS','yes'),(4221,'si_notification_email','payments@rasburytech.com','yes'),(4222,'si_notifications_admin_email','admin@rasburytech.com','yes'),(4223,'si_notification_format','TEXT','yes'),(4224,'si_address','a:9:{s:4:\"name\";s:34:\"RTS (Rasbury Technology Solutions)\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:5:\"email\";s:20:\"info@rasburytech.com\";s:6:\"street\";s:14:\"14625 Kress Rd\";s:4:\"city\";s:7:\"Roanoke\";s:4:\"zone\";s:2:\"IN\";s:11:\"postal_code\";s:5:\"46783\";s:7:\"country\";s:2:\"US\";}','yes'),(4225,'si_localeconv_setting','a:18:{s:13:\"decimal_point\";s:0:\"\";s:13:\"thousands_sep\";s:0:\"\";s:15:\"int_curr_symbol\";s:3:\"USD\";s:15:\"currency_symbol\";s:1:\"$\";s:17:\"mon_decimal_point\";s:1:\".\";s:17:\"mon_thousands_sep\";s:1:\",\";s:13:\"positive_sign\";s:0:\"\";s:13:\"negative_sign\";s:1:\"-\";s:15:\"int_frac_digits\";s:1:\"2\";s:11:\"frac_digits\";s:0:\"\";s:13:\"p_cs_precedes\";s:1:\"1\";s:14:\"p_sep_by_space\";s:0:\"\";s:13:\"n_cs_precedes\";s:1:\"1\";s:14:\"n_sep_by_space\";s:0:\"\";s:11:\"p_sign_posn\";s:1:\"1\";s:11:\"n_sign_posn\";s:1:\"1\";s:8:\"grouping\";s:0:\"\";s:12:\"mon_grouping\";a:2:{i:0;s:1:\"3\";i:1;s:1:\"3\";}}','yes'),(4226,'si_record_logs_option','','yes'),(4227,'destroy_everything','','yes'),(4228,'load_html_templates','','yes'),(4270,'si_license_key','5Ww57RrweqaATGZqkcHGWYr3z5gGL6IZ0FJimjrh','yes'),(4271,'si_uid','DuMUHbuZAEoUhULjwO-kafI2OHyW2hZjGPuVWkk_LRA~','yes'),(4311,'_site_transient_browser_4543a78580082505a88283f6188f57b1','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"58.0.3029.81\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(820,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"admin@rasburytech.com\";s:7:\"version\";s:5:\"4.9.2\";s:9:\"timestamp\";i:1516144512;}','no'),(11441,'ws_ame_meta_boxes','{\"format\":{\"name\":\"Admin Menu Editor meta boxes\",\"version\":\"1.0\"},\"screens\":{\"page\":{\"revisionsdiv\":{\"id\":\"revisionsdiv\",\"title\":\"Revisions\",\"context\":\"normal\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":true,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"postcustom\":{\"id\":\"postcustom\",\"title\":\"Custom Fields\",\"context\":\"normal\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":true,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"slugdiv\":{\"id\":\"slugdiv\",\"title\":\"Slug\",\"context\":\"normal\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":true,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"authordiv\":{\"id\":\"authordiv\",\"title\":\"Author\",\"context\":\"normal\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":true,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"wpseo_meta\":{\"id\":\"wpseo_meta\",\"title\":\"Yoast SEO\",\"context\":\"normal\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox.php\"},\"submitdiv\":{\"id\":\"submitdiv\",\"title\":\"Publish\",\"context\":\"side\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"pageparentdiv\":{\"id\":\"pageparentdiv\",\"title\":\"Page Attributes\",\"context\":\"side\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"postimagediv\":{\"id\":\"postimagediv\",\"title\":\"Featured Image\",\"context\":\"side\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/meta-boxes.php\"},\"dojodigital_toggle_title\":{\"id\":\"dojodigital_toggle_title\",\"title\":\"Hide Title\",\"context\":\"side\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/hide-title\\/dojo-digital-hide-title.php\"},\"plghidetitle\":{\"id\":\"plghidetitle\",\"title\":\"Singular Title\",\"context\":\"side\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/hide-singular-title\\/lib\\/WPA\\/HidePostTitle\\/MetaBox.php\"},\"so-panels-panels\":{\"id\":\"so-panels-panels\",\"title\":\"Page Builder\",\"context\":\"advanced\",\"isPresent\":true,\"grantAccess\":[],\"defaultVisibility\":[],\"isHiddenByDefault\":false,\"className\":\"ameMetaBoxWrapper\",\"wasPresent\":true,\"callbackFileName\":\"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/siteorigin-panels\\/inc\\/admin.php\"}}}}','no'),(1715,'wpseo_sitemap_133_cache_validator','jqND','no'),(1716,'wpseo_sitemap_134_cache_validator','jqNF','no'),(1717,'wpseo_sitemap_135_cache_validator','jqNI','no'),(1718,'wpseo_sitemap_136_cache_validator','jqNK','no'),(1719,'wpseo_sitemap_137_cache_validator','jqNO','no'),(1720,'wpseo_sitemap_141_cache_validator','jqNR','no'),(1721,'wpseo_sitemap_142_cache_validator','jqNU','no'),(8704,'_site_transient_timeout_browser_6cbc7decb116b2b0538c41c34e5ec2f3','1500517123','no'),(8705,'_site_transient_browser_6cbc7decb116b2b0538c41c34e5ec2f3','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"59.0.3071.86\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(13555,'_site_transient_timeout_browser_a9db4d03969fdd98d377b682b063efe6','1508633070','no'),(9468,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5642,'_site_transient_timeout_browser_7b4fb083b04390f6ff485892d3977a9a','1496362923','no'),(5643,'_site_transient_browser_7b4fb083b04390f6ff485892d3977a9a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10735,'woocommerce_admin_notices','a:1:{i:1;s:13:\"theme_support\";}','yes'),(10774,'_transient_timeout_external_ip_address_172.77.95.68','1504644481','no'),(10773,'_transient_product_query-transient-version','1504039951','yes'),(10736,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(10737,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10738,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10739,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10740,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10741,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10742,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10743,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10744,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10745,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10746,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10747,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10748,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10749,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(10751,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:9:\"moderated\";s:1:\"1\";s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(10765,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10766,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10771,'wc_stripe_version','3.2.3','yes'),(10772,'woocommerce_allow_tracking','no','yes'),(10775,'_transient_external_ip_address_172.77.95.68','192.145.239.26','no'),(10776,'_transient_product-transient-version','1504039951','yes'),(10777,'product_cat_children','a:0:{}','yes'),(10780,'_transient_timeout_wc_related_739','1504126358','no'),(10781,'_transient_wc_related_739','a:0:{}','no'),(11077,'sccss_settings','a:1:{s:13:\"sccss-content\";s:272:\".aff-wrap,\r\n.widget .aff-wrap ul li a {\r\n  color: #000;\r\n}\r\n\r\n.widget .aff-wrap ul {\r\n  text-align: center;\r\n}\r\n\r\n.widget .aff-wrap ul li {\r\n  display: inline-block;\r\n  margin: 15px 20px !important;\r\n}\r\n\r\n.widget .aff-wrap ul li a:first-child:before {\r\n  display: none;\r\n}\";}','yes'),(6373,'direct-stripe-notice','1','yes'),(16527,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1516280285;s:8:\"response\";a:14:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:7:\"default\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";s:7:\"default\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/black-studio-tinymce-widget\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:6:\"plugin\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/black-studio-tinymce-widget.2.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:80:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon-128x128.png?rev=1002774\";s:2:\"2x\";s:80:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon-256x256.png?rev=1002774\";s:7:\"default\";s:80:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon-256x256.png?rev=1002774\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:83:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-1544x500.png?rev=1002774\";s:2:\"1x\";s:82:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-772x250.png?rev=1002774\";s:7:\"default\";s:83:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-1544x500.png?rev=1002774\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:193:\"<p>If you&#039;re using WPML, double check our FAQ, as version 2.6 introduced some changes regarding widgets translations.\nImportant: Always ensure to backup your database before upgrading.</p>\";s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:25:\"booking/wpdev-booking.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:21:\"w.org/plugins/booking\";s:4:\"slug\";s:7:\"booking\";s:6:\"plugin\";s:25:\"booking/wpdev-booking.php\";s:11:\"new_version\";s:5:\"8.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/booking/\";s:7:\"package\";s:50:\"https://downloads.wordpress.org/plugin/booking.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:60:\"https://ps.w.org/booking/assets/icon-128x128.png?rev=1730848\";s:2:\"2x\";s:60:\"https://ps.w.org/booking/assets/icon-256x256.png?rev=1730848\";s:7:\"default\";s:60:\"https://ps.w.org/booking/assets/icon-256x256.png?rev=1730848\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/booking/assets/banner-772x250.png?rev=1623635\";s:7:\"default\";s:62:\"https://ps.w.org/booking/assets/banner-772x250.png?rev=1623635\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"call-now-button/call-now-button.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:29:\"w.org/plugins/call-now-button\";s:4:\"slug\";s:15:\"call-now-button\";s:6:\"plugin\";s:35:\"call-now-button/call-now-button.php\";s:11:\"new_version\";s:5:\"0.3.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/call-now-button/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/call-now-button.0.3.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:68:\"https://ps.w.org/call-now-button/assets/icon-128x128.png?rev=1793650\";s:2:\"2x\";s:68:\"https://ps.w.org/call-now-button/assets/icon-256x256.png?rev=1793650\";s:7:\"default\";s:68:\"https://ps.w.org/call-now-button/assets/icon-256x256.png?rev=1793650\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/call-now-button/assets/banner-1544x500.jpg?rev=1793650\";s:2:\"1x\";s:70:\"https://ps.w.org/call-now-button/assets/banner-772x250.jpg?rev=1793650\";s:7:\"default\";s:71:\"https://ps.w.org/call-now-button/assets/banner-1544x500.jpg?rev=1793650\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"disable-comments/disable-comments.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"w.org/plugins/disable-comments\";s:4:\"slug\";s:16:\"disable-comments\";s:6:\"plugin\";s:37:\"disable-comments/disable-comments.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/disable-comments.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:68:\"https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=971176\";s:2:\"2x\";s:68:\"https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=971176\";s:7:\"default\";s:68:\"https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=971176\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=1652560\";s:2:\"1x\";s:71:\"https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=1652560\";s:7:\"default\";s:72:\"https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=1652560\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:48:\"w.org/plugins/erident-custom-login-and-dashboard\";s:4:\"slug\";s:34:\"erident-custom-login-and-dashboard\";s:6:\"plugin\";s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";s:11:\"new_version\";s:5:\"3.5.5\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/erident-custom-login-and-dashboard.3.5.5.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:87:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/icon-128x128.png?rev=1015861\";s:2:\"2x\";s:87:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/icon-256x256.png?rev=1015861\";s:7:\"default\";s:87:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/icon-256x256.png?rev=1015861\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:89:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/banner-772x250.jpg?rev=1167543\";s:7:\"default\";s:89:\"https://ps.w.org/erident-custom-login-and-dashboard/assets/banner-772x250.jpg?rev=1167543\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:78:\"<p>Option to add Login button&#039;s text color and removed css conflicts.</p>\";s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"ip-geo-block/ip-geo-block.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:26:\"w.org/plugins/ip-geo-block\";s:4:\"slug\";s:12:\"ip-geo-block\";s:6:\"plugin\";s:29:\"ip-geo-block/ip-geo-block.php\";s:11:\"new_version\";s:7:\"3.0.6.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/ip-geo-block/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/ip-geo-block.3.0.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/ip-geo-block/assets/icon-128x128.png?rev=1148568\";s:7:\"default\";s:65:\"https://ps.w.org/ip-geo-block/assets/icon-128x128.png?rev=1148568\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:67:\"https://ps.w.org/ip-geo-block/assets/banner-772x250.jpg?rev=1148568\";s:7:\"default\";s:67:\"https://ps.w.org/ip-geo-block/assets/banner-772x250.jpg?rev=1148568\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:31:\"w.org/plugins/siteorigin-panels\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:5:\"2.6.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.6.0.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755\";s:2:\"2x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";s:7:\"default\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";s:7:\"default\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"so-widgets-bundle/so-widgets-bundle.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:31:\"w.org/plugins/so-widgets-bundle\";s:4:\"slug\";s:17:\"so-widgets-bundle\";s:6:\"plugin\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:11:\"new_version\";s:6:\"1.11.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/so-widgets-bundle/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.11.3.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-128x128.png?rev=1044942\";s:2:\"2x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942\";s:7:\"default\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942\";s:7:\"default\";s:72:\"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:48:\"codelights-shortcodes-and-widgets/codelights.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:47:\"w.org/plugins/codelights-shortcodes-and-widgets\";s:4:\"slug\";s:33:\"codelights-shortcodes-and-widgets\";s:6:\"plugin\";s:48:\"codelights-shortcodes-and-widgets/codelights.php\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/codelights-shortcodes-and-widgets/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/codelights-shortcodes-and-widgets.1.3.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:86:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/icon-128x128.png?rev=1291311\";s:2:\"2x\";s:86:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/icon-256x256.png?rev=1291311\";s:7:\"default\";s:86:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/icon-256x256.png?rev=1291311\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:89:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/banner-1544x500.png?rev=1350413\";s:2:\"1x\";s:88:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/banner-772x250.png?rev=1350413\";s:7:\"default\";s:89:\"https://ps.w.org/codelights-shortcodes-and-widgets/assets/banner-1544x500.png?rev=1350413\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.8.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":11:{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:\"6.3.22\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.6.3.22.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:62:\"https://ps.w.org/wordfence/assets/icon-128x128.png?rev=1457724\";s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=1457724\";s:7:\"default\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=1457724\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.png?rev=1630456\";s:7:\"default\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.png?rev=1630456\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"affiliates-manager/boot-strap.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:32:\"w.org/plugins/affiliates-manager\";s:4:\"slug\";s:18:\"affiliates-manager\";s:6:\"plugin\";s:33:\"affiliates-manager/boot-strap.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/affiliates-manager/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/affiliates-manager.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/affiliates-manager/assets/icon-128x128.png?rev=981249\";s:7:\"default\";s:70:\"https://ps.w.org/affiliates-manager/assets/icon-128x128.png?rev=981249\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/affiliates-manager/assets/banner-772x250.jpg?rev=926960\";s:7:\"default\";s:72:\"https://ps.w.org/affiliates-manager/assets/banner-772x250.jpg?rev=926960\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:60:\"wp-support-plus-responsive-ticket-system/wp-support-plus.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:54:\"w.org/plugins/wp-support-plus-responsive-ticket-system\";s:4:\"slug\";s:40:\"wp-support-plus-responsive-ticket-system\";s:6:\"plugin\";s:60:\"wp-support-plus-responsive-ticket-system/wp-support-plus.php\";s:11:\"new_version\";s:5:\"9.0.2\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/wp-support-plus-responsive-ticket-system/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/wp-support-plus-responsive-ticket-system.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:93:\"https://ps.w.org/wp-support-plus-responsive-ticket-system/assets/icon-128x128.png?rev=1232919\";s:7:\"default\";s:93:\"https://ps.w.org/wp-support-plus-responsive-ticket-system/assets/icon-128x128.png?rev=1232919\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:95:\"https://ps.w.org/wp-support-plus-responsive-ticket-system/assets/banner-772x250.png?rev=1783882\";s:7:\"default\";s:95:\"https://ps.w.org/wp-support-plus-responsive-ticket-system/assets/banner-772x250.png?rev=1783882\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":11:{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:5:\"6.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.6.1.1.zip\";s:5:\"icons\";a:4:{s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.png?rev=1550389\";s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1550389\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1203032\";s:7:\"default\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1203032\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1695112\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1695112\";s:7:\"default\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1695112\";}s:11:\"banners_rtl\";a:3:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1695112\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1695112\";s:7:\"default\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1695112\";}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:15:{s:19:\"404page/404page.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/404page\";s:4:\"slug\";s:7:\"404page\";s:6:\"plugin\";s:19:\"404page/404page.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/404page/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/404page.3.3.zip\";s:5:\"icons\";a:4:{s:2:\"1x\";s:60:\"https://ps.w.org/404page/assets/icon-128x128.png?rev=1664578\";s:2:\"2x\";s:60:\"https://ps.w.org/404page/assets/icon-256x256.png?rev=1664578\";s:3:\"svg\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=1664578\";s:7:\"default\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=1664578\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:63:\"https://ps.w.org/404page/assets/banner-1544x500.png?rev=1722432\";s:2:\"1x\";s:62:\"https://ps.w.org/404page/assets/banner-772x250.png?rev=1722432\";s:7:\"default\";s:63:\"https://ps.w.org/404page/assets/banner-1544x500.png?rev=1722432\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"captainform/captainform.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/captainform\";s:4:\"slug\";s:11:\"captainform\";s:6:\"plugin\";s:27:\"captainform/captainform.php\";s:11:\"new_version\";s:5:\"2.2.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/captainform/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/captainform.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:64:\"https://ps.w.org/captainform/assets/icon-128x128.jpg?rev=1279527\";s:2:\"2x\";s:64:\"https://ps.w.org/captainform/assets/icon-256x256.jpg?rev=1279527\";s:7:\"default\";s:64:\"https://ps.w.org/captainform/assets/icon-256x256.jpg?rev=1279527\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/captainform/assets/banner-772x250.png?rev=1529598\";s:7:\"default\";s:66:\"https://ps.w.org/captainform/assets/banner-772x250.png?rev=1529598\";}s:11:\"banners_rtl\";a:0:{}}s:69:\"country-ip-specific-redirections/country-ip-specific-redirections.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:46:\"w.org/plugins/country-ip-specific-redirections\";s:4:\"slug\";s:32:\"country-ip-specific-redirections\";s:6:\"plugin\";s:69:\"country-ip-specific-redirections/country-ip-specific-redirections.php\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/country-ip-specific-redirections/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/country-ip-specific-redirections.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://ps.w.org/country-ip-specific-redirections/assets/icon-128x128.png?rev=1423963\";s:7:\"default\";s:85:\"https://ps.w.org/country-ip-specific-redirections/assets/icon-128x128.png?rev=1423963\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:87:\"https://ps.w.org/country-ip-specific-redirections/assets/banner-772x250.png?rev=1423963\";s:7:\"default\";s:87:\"https://ps.w.org/country-ip-specific-redirections/assets/banner-772x250.png?rev=1423963\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"direct-stripe/direct-stripe.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/direct-stripe\";s:4:\"slug\";s:13:\"direct-stripe\";s:6:\"plugin\";s:31:\"direct-stripe/direct-stripe.php\";s:11:\"new_version\";s:5:\"2.0.8\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/direct-stripe/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/direct-stripe.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://ps.w.org/direct-stripe/assets/icon-128x128.jpg?rev=1523113\";s:2:\"2x\";s:66:\"https://ps.w.org/direct-stripe/assets/icon-256x256.jpg?rev=1523113\";s:7:\"default\";s:66:\"https://ps.w.org/direct-stripe/assets/icon-256x256.jpg?rev=1523113\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/direct-stripe/assets/banner-772x250.jpg?rev=1523113\";s:7:\"default\";s:68:\"https://ps.w.org/direct-stripe/assets/banner-772x250.jpg?rev=1523113\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"font-awesome/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/font-awesome\";s:4:\"slug\";s:12:\"font-awesome\";s:6:\"plugin\";s:23:\"font-awesome/plugin.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/font-awesome/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/font-awesome.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/font-awesome/assets/banner-772x250.png?rev=600337\";s:7:\"default\";s:66:\"https://ps.w.org/font-awesome/assets/banner-772x250.png?rev=600337\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:7:\"default\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";s:7:\"default\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"hide-title/dojo-digital-hide-title.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/hide-title\";s:4:\"slug\";s:10:\"hide-title\";s:6:\"plugin\";s:38:\"hide-title/dojo-digital-hide-title.php\";s:11:\"new_version\";s:5:\"1.0.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/hide-title/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/hide-title.1.0.4.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.3.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.3.8.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:7:\"default\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=1517954\";s:7:\"default\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/page-links-to\";s:4:\"slug\";s:13:\"page-links-to\";s:6:\"plugin\";s:31:\"page-links-to/page-links-to.php\";s:11:\"new_version\";s:5:\"2.9.9\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/page-links-to.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:2:\"1x\";s:67:\"https://ps.w.org/page-links-to/assets/banner-772x250.png?rev=536046\";s:7:\"default\";s:67:\"https://ps.w.org/page-links-to/assets/banner-772x250.png?rev=536046\";}s:11:\"banners_rtl\";a:0:{}}s:42:\"peters-login-redirect/wplogin_redirect.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/peters-login-redirect\";s:4:\"slug\";s:21:\"peters-login-redirect\";s:6:\"plugin\";s:42:\"peters-login-redirect/wplogin_redirect.php\";s:11:\"new_version\";s:5:\"2.9.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/peters-login-redirect/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/peters-login-redirect.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:57:\"real-time-find-and-replace/real-time-find-and-replace.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/real-time-find-and-replace\";s:4:\"slug\";s:26:\"real-time-find-and-replace\";s:6:\"plugin\";s:57:\"real-time-find-and-replace/real-time-find-and-replace.php\";s:11:\"new_version\";s:3:\"3.9\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/real-time-find-and-replace/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/real-time-find-and-replace.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:79:\"https://ps.w.org/real-time-find-and-replace/assets/icon-128x128.png?rev=1347950\";s:2:\"2x\";s:79:\"https://ps.w.org/real-time-find-and-replace/assets/icon-256x256.png?rev=1347950\";s:7:\"default\";s:79:\"https://ps.w.org/real-time-find-and-replace/assets/icon-256x256.png?rev=1347950\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:82:\"https://ps.w.org/real-time-find-and-replace/assets/banner-1544x500.png?rev=1347950\";s:2:\"1x\";s:81:\"https://ps.w.org/real-time-find-and-replace/assets/banner-772x250.png?rev=1347950\";s:7:\"default\";s:82:\"https://ps.w.org/real-time-find-and-replace/assets/banner-1544x500.png?rev=1347950\";}s:11:\"banners_rtl\";a:3:{s:2:\"2x\";s:86:\"https://ps.w.org/real-time-find-and-replace/assets/banner-1544x500-rtl.png?rev=1347950\";s:2:\"1x\";s:85:\"https://ps.w.org/real-time-find-and-replace/assets/banner-772x250-rtl.png?rev=1347950\";s:7:\"default\";s:86:\"https://ps.w.org/real-time-find-and-replace/assets/banner-1544x500-rtl.png?rev=1347950\";}}s:39:\"simple-custom-css/simple-custom-css.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/simple-custom-css\";s:4:\"slug\";s:17:\"simple-custom-css\";s:6:\"plugin\";s:39:\"simple-custom-css/simple-custom-css.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/simple-custom-css/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/simple-custom-css.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:70:\"https://ps.w.org/simple-custom-css/assets/icon-128x128.png?rev=1073712\";s:2:\"2x\";s:70:\"https://ps.w.org/simple-custom-css/assets/icon-256x256.png?rev=1073712\";s:7:\"default\";s:70:\"https://ps.w.org/simple-custom-css/assets/icon-256x256.png?rev=1073712\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:71:\"https://ps.w.org/simple-custom-css/assets/banner-772x250.png?rev=752552\";s:7:\"default\";s:71:\"https://ps.w.org/simple-custom-css/assets/banner-772x250.png?rev=752552\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"string-locator/string-locator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/string-locator\";s:4:\"slug\";s:14:\"string-locator\";s:6:\"plugin\";s:33:\"string-locator/string-locator.php\";s:11:\"new_version\";s:5:\"2.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/string-locator/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/string-locator.2.3.0.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:67:\"https://ps.w.org/string-locator/assets/icon-128x128.png?rev=1352234\";s:2:\"2x\";s:67:\"https://ps.w.org/string-locator/assets/icon-256x256.png?rev=1352230\";s:7:\"default\";s:67:\"https://ps.w.org/string-locator/assets/icon-256x256.png?rev=1352230\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/string-locator/assets/banner-1544x500.png?rev=928605\";s:2:\"1x\";s:68:\"https://ps.w.org/string-locator/assets/banner-772x250.png?rev=928605\";s:7:\"default\";s:69:\"https://ps.w.org/string-locator/assets/banner-1544x500.png?rev=928605\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"wps-hide-login/wps-hide-login.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/wps-hide-login\";s:4:\"slug\";s:14:\"wps-hide-login\";s:6:\"plugin\";s:33:\"wps-hide-login/wps-hide-login.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wps-hide-login/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wps-hide-login.1.2.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-128x128.png?rev=1144387\";s:2:\"2x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1144387\";s:7:\"default\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1144387\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:70:\"https://ps.w.org/wps-hide-login/assets/banner-1544x500.png?rev=1144387\";s:2:\"1x\";s:69:\"https://ps.w.org/wps-hide-login/assets/banner-772x250.jpg?rev=1144387\";s:7:\"default\";s:70:\"https://ps.w.org/wps-hide-login/assets/banner-1544x500.png?rev=1144387\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"wp-simple-mail-sender/wp-simple-mail-sender.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/wp-simple-mail-sender\";s:4:\"slug\";s:21:\"wp-simple-mail-sender\";s:6:\"plugin\";s:47:\"wp-simple-mail-sender/wp-simple-mail-sender.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wp-simple-mail-sender/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/wp-simple-mail-sender.1.0.2.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:2:\"1x\";s:76:\"https://ps.w.org/wp-simple-mail-sender/assets/banner-772x250.jpg?rev=1238488\";s:7:\"default\";s:76:\"https://ps.w.org/wp-simple-mail-sender/assets/banner-772x250.jpg?rev=1238488\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(6440,'wpseo_sitemap_266_cache_validator','6uqk8','no'),(8498,'rewrite_rules','a:122:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:44:\"captainform_post/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"captainform_post/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"captainform_post/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"captainform_post/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"captainform_post/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"captainform_post/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"captainform_post/([^/]+)/embed/?$\";s:49:\"index.php?captainform_post=$matches[1]&embed=true\";s:37:\"captainform_post/([^/]+)/trackback/?$\";s:43:\"index.php?captainform_post=$matches[1]&tb=1\";s:45:\"captainform_post/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?captainform_post=$matches[1]&paged=$matches[2]\";s:52:\"captainform_post/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?captainform_post=$matches[1]&cpage=$matches[2]\";s:41:\"captainform_post/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?captainform_post=$matches[1]&page=$matches[2]\";s:33:\"captainform_post/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"captainform_post/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"captainform_post/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"captainform_post/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"captainform_post/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"captainform_post/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"directstripelogs/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"directstripelogs/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"directstripelogs/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"directstripelogs/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"directstripelogs/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"directstripelogs/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"directstripelogs/([^/]+)/embed/?$\";s:49:\"index.php?directstripelogs=$matches[1]&embed=true\";s:37:\"directstripelogs/([^/]+)/trackback/?$\";s:43:\"index.php?directstripelogs=$matches[1]&tb=1\";s:45:\"directstripelogs/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?directstripelogs=$matches[1]&paged=$matches[2]\";s:52:\"directstripelogs/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?directstripelogs=$matches[1]&cpage=$matches[2]\";s:41:\"directstripelogs/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?directstripelogs=$matches[1]&page=$matches[2]\";s:33:\"directstripelogs/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"directstripelogs/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"directstripelogs/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"directstripelogs/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"directstripelogs/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"directstripelogs/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=4&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'),(10527,'wpam_donot_record_zero_amt_commission','0','yes'),(10528,'wpam_enable_debug','0','yes'),(7504,'_site_transient_timeout_browser_a36d7f1eb33cf388d2af8c48b140f522','1499364502','no'),(7505,'_site_transient_browser_a36d7f1eb33cf388d2af8c48b140f522','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"58.0.3029.83\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(7518,'_site_transient_timeout_community-events-351be6ee8039a8651ad5914f0c939a04','1498802909','no'),(7519,'_site_transient_community-events-351be6ee8039a8651ad5914f0c939a04','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"166.137.91.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"Introduction to the WordPress Template System\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/240758251/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2017-07-10 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.8112799999999964484231895767152309417724609375;s:9:\"longitude\";d:-74.219345000000004120010999031364917755126953125;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:15:\"Lightning Talks\";s:3:\"url\";s:73:\"https://www.meetup.com/Northwestern-NJ-WordPress-Meetup/events/236335827/\";s:6:\"meetup\";s:32:\"Northwestern NJ WordPress Meetup\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/Northwestern-NJ-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-07-11 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Clinton, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.64503500000000002501110429875552654266357421875;s:9:\"longitude\";d:-74.9118349999999963984009809792041778564453125;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:3:\"TBA\";s:3:\"url\";s:71:\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup/events/239618657/\";s:6:\"meetup\";s:30:\"Lehigh Valley WordPress Meetup\";s:10:\"meetup_url\";s:54:\"https://www.meetup.com/Lehigh-Valley-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-07-13 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:28:\"Bethlehem, PA, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.61999893188500010410280083306133747100830078125;s:9:\"longitude\";d:-75.410003662109005517777404747903347015380859375;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp Washington, DC\";s:3:\"url\";s:28:\"https://2017.dc.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-07-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Washington, DC\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:38.90265360000000072204784373752772808074951171875;s:9:\"longitude\";d:-77.022923700000006874688551761209964752197265625;}}i:4;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Boston\";s:3:\"url\";s:32:\"https://2017.boston.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-07-22 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Boston, MA USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.35091779999999772599039715714752674102783203125;s:9:\"longitude\";d:-71.1089510000000046829882194288074970245361328125;}}}}','no'),(11279,'_site_transient_timeout_browser_79290445b821af2805351bad8f397267','1505183618','no'),(11280,'_site_transient_browser_79290445b821af2805351bad8f397267','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.101\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(8489,'lcp','a:5:{s:6:\"global\";a:5:{s:23:\"lcp_admin_email_address\";s:20:\"info@rasburytech.com\";s:20:\"lcp_lead_stock_level\";s:1:\"1\";s:14:\"lcp_lead_price\";s:3:\"299\";s:21:\"lcp_currency_accepted\";s:3:\"USD\";s:19:\"lcp_payment_gateway\";s:6:\"stripe\";}s:6:\"stripe\";a:5:{s:15:\"lcp_stripe_mode\";s:4:\"live\";s:30:\"lcp_stripe_api_test_secret_key\";s:32:\"sk_test_6hVvgNfuNIwSRoDKASvMkQTp\";s:35:\"lcp_stripe_api_test_publishable_key\";s:32:\"pk_test_5D6ej7TK9liCMi99N601i2sN\";s:30:\"lcp_stripe_api_live_secret_key\";s:32:\"sk_live_Nf1fxU07KTCPRPkolgjSEuE2\";s:35:\"lcp_stripe_api_live_publishable_key\";s:32:\"pk_live_uobesm2npdRdgNw0TtfkidA8\";}s:6:\"paypal\";a:2:{s:19:\"lcp_paypal_btn_mode\";b:0;s:24:\"lcp_paypal_email_address\";b:0;}s:10:\"on_account\";a:2:{s:27:\"lcp_on_account_payment_mode\";s:4:\"test\";s:27:\"lcp_on_account_credit_limit\";s:4:\"0.00\";}s:14:\"update_version\";s:3:\"130\";}','yes'),(13567,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1508071479','no'),(13568,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1508028279','no'),(13569,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1508071479','no'),(13570,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\'>WordPress 4.9 Beta 2</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/bear-app-users-want-wordpress-publishing-integration\'>WPTavern: Bear App Users Want WordPress Publishing Integration</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-4-9-protects-users-from-fatal-errors-created-in-the-theme-and-plugin-editors\'>WPTavern: WordPress 4.9 Protects Users From Fatal Errors Created in the Theme and Plugin Editors</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/github-launches-new-dependency-graph-feature-with-security-alerts-coming-soon\'>WPTavern: GitHub Launches New Dependency Graph Feature with Security Alerts Coming Soon</a></li></ul></div>','no'),(16480,'_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-4.9.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.2\";s:7:\"version\";s:5:\"4.9.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1516280284;s:15:\"version_checked\";s:5:\"4.9.2\";s:12:\"translations\";a:0:{}}','no'),(14629,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1516280286;s:7:\"checked\";a:4:{s:12:\"rock-n-rolla\";s:5:\"1.0.3\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(13032,'_site_transient_timeout_community-events-bb80d6f292adde3fd55084391d21de7b','1507175556','no'),(13033,'_site_transient_community-events-bb80d6f292adde3fd55084391d21de7b','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"166.137.90.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:55:\"NEO West WordPress Monthly Meetup (every 1st Wednesday)\";s:3:\"url\";s:53:\"https://www.meetup.com/NEOWordPress/events/243303124/\";s:6:\"meetup\";s:31:\"Northeast Ohio WordPress Meetup\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/NEOWordPress/\";s:4:\"date\";s:19:\"2017-10-04 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Brunswick, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.2446819999999974015736370347440242767333984375;s:9:\"longitude\";d:-81.841285999999996647602529264986515045166015625;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:54:\"NEO WordPress Monthly East Meetup (every 4th Thursday)\";s:3:\"url\";s:53:\"https://www.meetup.com/NEOWordPress/events/243742069/\";s:6:\"meetup\";s:31:\"Northeast Ohio WordPress Meetup\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/NEOWordPress/\";s:4:\"date\";s:19:\"2017-10-26 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Akron, OH, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:41.49000167846700293239337042905390262603759765625;s:9:\"longitude\";d:-81.669998168944999861196265555918216705322265625;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:55:\"NEO West WordPress Monthly Meetup (every 1st Wednesday)\";s:3:\"url\";s:53:\"https://www.meetup.com/NEOWordPress/events/243766505/\";s:6:\"meetup\";s:31:\"Northeast Ohio WordPress Meetup\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/NEOWordPress/\";s:4:\"date\";s:19:\"2017-11-01 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Brunswick, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.2446819999999974015736370347440242767333984375;s:9:\"longitude\";d:-81.841285999999996647602529264986515045166015625;}}}}','no'),(13082,'booking_form_field_label1','First Name','yes'),(13083,'booking_form_field_active2','On','yes'),(13084,'booking_form_field_required2','On','yes'),(13085,'booking_form_field_label2','Last Name','yes'),(13086,'booking_form_field_active3','On','yes'),(13087,'booking_form_field_required3','On','yes'),(13088,'booking_form_field_label3','Email','yes'),(13089,'booking_form_field_active4','On','yes'),(13090,'booking_form_field_required4','Off','yes'),(13091,'booking_form_field_label4','Phone','yes'),(13092,'booking_form_field_active5','On','yes'),(13093,'booking_form_field_required5','Off','yes'),(13094,'booking_form_field_label5','Details','yes'),(13095,'booking_form_field_active6','Off','yes'),(13096,'booking_form_field_required6','Off','yes'),(13097,'booking_form_field_label6','Visitors','yes'),(13098,'booking_form_field_values6','1\n2\n3\n4','yes'),(13099,'booking_is_days_always_available','Off','yes'),(13100,'booking_check_on_server_if_dates_free','On','yes'),(13101,'booking_unavailable_days_num_from_today','0','yes'),(13102,'booking_unavailable_day0','On','yes'),(13103,'booking_unavailable_day1','Off','yes'),(13104,'booking_unavailable_day2','Off','yes'),(13105,'booking_unavailable_day3','Off','yes'),(13106,'booking_unavailable_day4','Off','yes'),(13107,'booking_unavailable_day5','Off','yes'),(13108,'booking_unavailable_day6','Off','yes'),(13109,'booking_menu_position','top','yes'),(13110,'booking_user_role_booking','editor','yes'),(13111,'booking_user_role_addbooking','editor','yes'),(13112,'booking_user_role_resources','editor','yes'),(13113,'booking_user_role_settings','administrator','yes'),(13114,'booking_is_email_reservation_adress','On','yes'),(13115,'booking_email_reservation_adress','&quot;Booking system&quot; &lt;admin@rasburytech.com&gt;','yes'),(13116,'booking_email_reservation_from_adress','[visitoremail]','yes'),(13117,'booking_email_reservation_subject','New booking','yes'),(13118,'booking_email_reservation_content','You need to approve a new booking [bookingtype] for: [dates]&lt;br/&gt;&lt;br/&gt; Person detail information:&lt;br/&gt; [content]&lt;br/&gt;&lt;br/&gt; Currently a new booking is waiting for approval. Please visit the moderation panel [moderatelink]&lt;br/&gt;&lt;br/&gt;Thank you, RTS&lt;br/&gt;[siteurl]','yes'),(13119,'booking_is_email_newbookingbyperson_adress','Off','yes'),(13120,'booking_email_newbookingbyperson_adress','&quot;Booking system&quot; &lt;admin@rasburytech.com&gt;','yes'),(13121,'booking_email_newbookingbyperson_subject','New booking','yes'),(13122,'booking_email_newbookingbyperson_content','Your reservation [bookingtype] for: [dates] is processing now! We will send confirmation by email. &lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt; Thank you, RTS&lt;br/&gt;[siteurl]','yes'),(13123,'booking_is_email_approval_adress','On','yes'),(13124,'booking_is_email_approval_send_copy_to_admin','Off','yes'),(13125,'booking_email_approval_adress','&quot;Booking system&quot; &lt;admin@rasburytech.com&gt;','yes'),(13126,'booking_email_approval_subject','Your booking has been approved','yes'),(13127,'booking_email_approval_content','Your booking [bookingtype] for: [dates] has been approved.&lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt;Thank you, RTS&lt;br/&gt;[siteurl]','yes'),(13128,'booking_is_email_deny_adress','On','yes'),(13129,'booking_is_email_deny_send_copy_to_admin','Off','yes'),(13130,'booking_email_deny_adress','&quot;Booking system&quot; &lt;admin@rasburytech.com&gt;','yes'),(13131,'booking_email_deny_subject','Your booking has been declined','yes'),(13132,'booking_email_deny_content','Your booking [bookingtype] for: [dates] has been  canceled. &lt;br/&gt;[denyreason]&lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt;Thank you, RTS&lt;br/&gt;[siteurl]','yes'),(13133,'booking_widget_title','Booking form','yes'),(13134,'booking_widget_show','booking_form','yes'),(13135,'booking_widget_type','1','yes'),(13136,'booking_widget_calendar_count','1','yes'),(13137,'booking_widget_last_field','','yes'),(13138,'booking_wpdev_copyright_adminpanel','On','yes'),(13139,'booking_is_show_powered_by_notice','Off','yes'),(13140,'booking_is_use_captcha','Off','yes'),(13141,'booking_is_show_legend','On','yes'),(13142,'booking_legend_is_show_item_available','On','yes'),(13143,'booking_legend_text_for_item_available','Available','yes'),(13144,'booking_legend_is_show_item_pending','Off','yes'),(13145,'booking_legend_text_for_item_pending','Pending','yes'),(13146,'booking_legend_is_show_item_approved','On','yes'),(13147,'booking_legend_text_for_item_approved','Booked','yes'),(13148,'booking_legend_is_show_numbers','On','yes'),(13149,'booking_email_new_admin','a:15:{s:7:\"enabled\";s:2:\"On\";s:2:\"to\";s:25:\"m.rasbury@rasburytech.com\";s:7:\"to_name\";s:18:\"Appointment Booked\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:18:\"Appointment Booked\";s:7:\"subject\";s:15:\"New Appointment\";s:7:\"content\";s:273:\"<p>You need to approve a new booking [bookingtype] for: [dates]<br /><br /> Person detail information:<br /> [content]<br /><br /> Currently a new booking is waiting for approval. Please visit the moderation panel [moderatelink]<br /><br />Thank you, RTS<br />[siteurl]</p>\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13150,'booking_email_new_visitor','a:13:{s:7:\"enabled\";s:2:\"On\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:11:\"New booking\";s:7:\"content\";s:157:\"Your reservation [bookingtype] for: [dates] is processing now! We will send confirmation by email. <br/><br/>[content]<br/><br/> Thank you, RTS<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13151,'booking_email_approved','a:14:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been approved\";s:7:\"content\";s:115:\"Your booking [bookingtype] for: [dates] has been approved.<br/><br/>[content]<br/><br/>Thank you, RTS<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13152,'booking_email_deleted','a:14:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:134:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, RTS<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13153,'booking_email_deny','a:14:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:134:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, RTS<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13154,'booking_email_trash','a:14:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:4:\"from\";s:21:\"admin@rasburytech.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:134:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, RTS<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(13155,'booking_form','[calendar]\n<div class=\"standard-form\">\n     <p>First Name*:<br />[text* name]</p>\n     <p>Last Name*:<br />[text* secondname]</p>\n     <p>Email*:<br />[email* email]</p>\n     <p>Phone*:<br />[text* phone]</p>\n     <p>Client Interest*:<br />[textarea* details]</p>\n     <p>[captcha]</p>\n     <p>[submit class:btn \"Send\"]</p>\n</div>\n','yes'),(13156,'booking_form_show','<div style=\"text-align:left;word-wrap: break-word;\">\n  <strong>First Name</strong>: <span class=\"fieldvalue\">[name]</span><br/>\n  <strong>Last Name</strong>: <span class=\"fieldvalue\">[secondname]</span><br/>\n  <strong>Email</strong>: <span class=\"fieldvalue\">[email]</span><br/>\n  <strong>Phone</strong>: <span class=\"fieldvalue\">[phone]</span><br/>\n  <strong>Client Interest</strong>: <span class=\"fieldvalue\">[details]</span><br/>\n</div>','yes'),(13157,'booking_form_visual','a:9:{i:0;a:2:{s:4:\"type\";s:8:\"calendar\";s:10:\"obligatory\";s:2:\"On\";}i:1;a:7:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:4:\"name\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:10:\"First Name\";s:5:\"value\";s:0:\"\";}i:2;a:7:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:10:\"secondname\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:9:\"Last Name\";s:5:\"value\";s:0:\"\";}i:3;a:7:{s:4:\"type\";s:5:\"email\";s:4:\"name\";s:5:\"email\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:0:\"\";}i:4;a:7:{s:4:\"type\";s:6:\"select\";s:4:\"name\";s:8:\"visitors\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:3:\"Off\";s:8:\"required\";s:3:\"Off\";s:5:\"label\";s:8:\"Visitors\";s:5:\"value\";s:10:\"1\r\n2\r\n3\r\n4\";}i:5;a:7:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:5:\"phone\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:4:\"type\";s:8:\"textarea\";s:4:\"name\";s:7:\"details\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:15:\"Client Interest\";s:5:\"value\";s:0:\"\";}i:7;a:6:{s:4:\"type\";s:7:\"captcha\";s:4:\"name\";s:7:\"captcha\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:3:\"Off\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:0:\"\";}i:8;a:6:{s:4:\"type\";s:6:\"submit\";s:4:\"name\";s:6:\"submit\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:4:\"Send\";}}','yes'),(13158,'booking_gcal_feed','','yes'),(13159,'booking_gcal_events_from','month-start','yes'),(13160,'booking_gcal_events_from_offset','','yes'),(13161,'booking_gcal_events_from_offset_type','','yes'),(13162,'booking_gcal_events_until','any','yes'),(13163,'booking_gcal_events_until_offset','','yes'),(13164,'booking_gcal_events_until_offset_type','','yes'),(13165,'booking_gcal_events_max','25','yes'),(13166,'booking_gcal_api_key','','yes'),(13167,'booking_gcal_timezone','','yes'),(13168,'booking_gcal_is_send_email','Off','yes'),(13169,'booking_gcal_auto_import_is_active','Off','yes'),(13170,'booking_gcal_auto_import_time','24','yes'),(13171,'booking_gcal_events_form_fields','s:101:\"a:3:{s:5:\"title\";s:9:\"text^name\";s:11:\"description\";s:16:\"textarea^details\";s:5:\"where\";s:5:\"text^\";}\";','yes'),(13172,'booking_version_num','8.0','yes'),(13176,'booking_activation_redirect_for_version','8.0','yes'),(13182,'wpdevart_booking_version','1.6.6','no'),(13175,'widget_bookingwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10439,'_site_transient_timeout_community-events-b0acf4446f58a9fd85534737e053e2b5','1503997177','no'),(10440,'_site_transient_community-events-b0acf4446f58a9fd85534737e053e2b5','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"50.102.75.0\";}s:6:\"events\";a:4:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Milwaukee\";s:3:\"url\";s:35:\"https://2017.milwaukee.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Milwaukee, Wisconsin, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.03836530000000237805579672567546367645263671875;s:9:\"longitude\";d:-87.9121075999999987971023074351251125335693359375;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}}}','no'),(8580,'_site_transient_timeout_community-events-46338fb0d70c2b39c345e02b0b6ac03c','1499917781','no'),(8581,'_site_transient_community-events-46338fb0d70c2b39c345e02b0b6ac03c','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.78.237.0\";}s:6:\"events\";a:3:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:25:\"WordCamp Grand Rapids, MI\";s:3:\"url\";s:37:\"https://2017.grandrapids.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-08-26 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Grand Rapids, MI\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.96412930000000329755494021810591220855712890625;s:9:\"longitude\";d:-85.680086200000005192123353481292724609375;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}}}','no'),(10757,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(10758,'_transient_timeout__woocommerce_helper_updates','1504082831','no'),(10759,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1504039630;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(10761,'woocommerce_paypal-braintree_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10762,'woocommerce_stripe_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(10763,'woocommerce_paypal_settings','a:2:{s:7:\"enabled\";s:2:\"no\";s:5:\"email\";s:21:\"admin@rasburytech.com\";}','yes'),(10638,'woocommerce_default_country','US:IN','yes'),(10639,'woocommerce_allowed_countries','all','yes'),(10640,'woocommerce_all_except_countries','','yes'),(10641,'woocommerce_specific_allowed_countries','','yes'),(10642,'woocommerce_ship_to_countries','','yes'),(10643,'woocommerce_specific_ship_to_countries','','yes'),(10470,'wpam_cookie_expire','0','no'),(10471,'wpam_email_name','','no'),(10472,'wpam_email_address','','no'),(10473,'wpam_auto_aff_approve_enabled','0','no'),(10474,'wpam_affbounty_type','percent','yes'),(10475,'wpam_affbounty_amount','100','yes'),(10476,'wpam_affcurrency_symbol','$','yes'),(10477,'wpam_affcurrency_code','USD','yes'),(10478,'wpam_enable_impressions','0','no'),(10479,'wpam_payout_check_enabled','1','no'),(10480,'wpam_payout_paypal_enabled','0','no'),(10481,'wpam_tnc_body','<h1>[site name] Affiliate Program Terms of Service</h1>\n<h2>Agreement</h2>\nBy signing up to be an Affiliate in the [site name] Affiliate Program (\"Program\") you are agreeing to be bound by the following terms and conditions (\"Terms of Service\").\n\n<strong>[site name]</strong> reserves the right to update and change the Terms of Service from time to time without notice. Any new features that augment or enhance the current Program, including the release of new tools and resources, shall be subject to the Terms of Service. Continued use of the Program after any such changes shall constitute your consent to such changes.\n\nViolation of any of the terms below will result in the termination of your Account and for forfeiture of any outstanding affiliate commission payments earned during the violation. You agree to use the Affiliate Program at your own risk.\n\n<h2>Account Terms</h2>\n<ul>\n<li>You must be 18 years or older to be part of this Program.</li>\n<li>You must live in the United States to be an Affiliate.</li>\n<li>You must be a human. Accounts registered by \"bots\" or other automated methods are not permitted.</li>\n<li>You must provide your legal full name, a valid email address, and any other information requested in order to complete the signup process.</li>\n<li>Your login may only be used by one person - a single login shared by multiple people is not permitted.</li>\n<li>You are responsible for maintaining the security of your account and password. <strong>[site name]</strong> cannot and will not be liable for any loss or damage from your failure to comply with this security obligation.</li>\n<li>You are responsible for all Content posted and activity that occurs under your account.</li>\n<li>One person or legal entity may not maintain more than one account.</li>\n<li>You may not use the Affiliate Program for any illegal or unauthorized purpose. You must not, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws).</li>\n<li>You may not use the Affiliate Program to earn money on your own <strong>[site name]</strong> product accounts.</li>\n</ul>\n\n<h2>Links/graphics on your site, in your emails, or other communications</h2>\nOnce you have signed up for the Affiliate Program, you will be assigned a unique Affiliate Code. You are permitted to place links, banners, or other graphics we provide with your Affiliate Code on your site, in your emails, or in other communications. We will provide you with guidelines, link styles, and graphical artwork to use in linking to <strong>[site name]</strong>. We may change the design of the artwork at any time without notice, but we won\'t change the dimensions of the images without proper notice.\n\nTo permit accurate tracking, reporting, and referral fee accrual, we will provide you with special link formats to be used in all links between your site and the <strong>[site name]</strong>. You must ensure that each of the links between your site and the <strong>[site name]</strong> properly utilizes such special link formats. Links to the <strong>[site name]</strong> placed on your site pursuant to this Agreement and which properly utilize such special link formats are referred to as \"Special Links.\" You will earn referral fees only with respect to sales on a <strong>[site name]</strong> product occurring directly through Special Links; we will not be liable to you with respect to any failure by you or someone you refer to use Special Links or incorrectly type your Affiliate Code, including to the extent that such failure may result in any reduction of amounts that would otherwise be paid to you pursuant to this Agreement.\n\nAffiliate links should point to the page of the product being promoted.\n\n<h2>Referral fees/commissions and payment</h2>\nFor a Product sale to be eligible to earn a referral fee, the customer must click-through a Special Link from your site, email, or other communications to <strong>[site url]</strong> and complete an order for a product during that session.\n\nWe will only pay commissions on links that are automatically tracked and reported by our systems. We will not pay commissions if someone says they purchased or someone says they entered a referral code if it was not tracked by our system. We can only pay commissions on business generated through properly formatted special links that were automatically tracked by our systems.\n\nWe reserve the right to disqualify commissions earned through fraudulent, illegal, or overly aggressive, questionable sales or marketing methods.\n\nPayments only begin once you\'ve earned more than <strong>$[payout minimum]</strong> in affiliate income. If your affiliate account never crosses the <strong>$[payout minimum]</strong> threshold, your commissions will not be realized or paid. We are only responsible for paying accounts that have crossed the <strong>$[payout minimum]</strong> threshold.\n\n<h2>Identifying yourself as a [site name] Affiliate</h2>\n\nYou may not issue any press release with respect to this Agreement or your participation in the Program; such action may result in your termination from the Program. In addition, you may not in any manner misrepresent or embellish the relationship between us and you, say you develop our products, say you are part of <strong>[site name]</strong> or express or imply any relationship or affiliation between us and you or any other person or entity except as expressly permitted by this Agreement (including by expressing or implying that we support, sponsor, endorse, or contribute money to any charity or other cause).\n\nYou may not purchase products through your affiliate links for your own use. Such purchases may result (in our sole discretion) in the withholding of referral fees and/or the termination of this Agreement.\n\n<h2>Payment schedule</h2>\nAs long as your current affiliate earning are over <strong>$[payout minimum]</strong>, you\'ll be paid each month. If you haven\'t earned <strong>$[payout minimum]</strong> since your last payment, we\'ll pay you the following monht after you\'ve crossed the threshold.\n\n<h2>Customer definition</h2>\nCustomers who buy products through this Program will be deemed to be our customers. Accordingly, all of our rules, policies, and operating procedures concerning customer orders, customer service, and product sales will apply to those customers. We may change our policies and operating procedures at any time. For example, we will determine the prices to be charged for products sold under this Program in accordance with our own pricing policies. Product prices and availability may vary from time to time. Because price changes may affect Products that you have listed on your site, you should not display product prices on your site. We will use commercially reasonable efforts to present accurate information, but we cannot guarantee the availability or price of any particular product.\n\n<h2>Your responsibilities</h2>\nYou will be solely responsible for the development, operation, and maintenance of your site and for all materials that appear on your site. For example, you will be solely responsible for:\n\n- The technical operation of your site and all related equipment\n- Ensuring the display of Special Links on your site does not violate any agreement between you and any third party (including without limitation any restrictions or requirements placed on you by a third party that hosts your site)\n- The accuracy, truth, and appropriateness of materials posted on your site (including, among other things, all Product-related materials and any information you include within or associate with Special Links)\n- Ensuring that materials posted on your site do not violate or infringe upon the rights of any third party (including, for example, copyrights, trademarks, privacy, or other personal or proprietary rights)\n- Ensuring that materials posted on your site are not libelous or otherwise illegal\n- Ensuring that your site accurately and adequately discloses, either through a privacy policy or otherwise, how you collect, use, store, and disclose data collected from visitors, including, where applicable, that third parties (including advertisers) may serve content and/or advertisements and collect information directly from visitors and may place or recognize cookies on visitors\' browsers.\n\n<h2>Compliance with Laws</h2>\nAs a condition to your participation in the Program, you agree that while you are a Program participant you will comply with all laws, ordinances, rules, regulations, orders, licenses, permits, judgments, decisions or other requirements of any governmental authority that has jurisdiction over you, whether those laws, etc. are now in effect or later come into effect during the time you are a Program participant. Without limiting the foregoing obligation, you agree that as a condition of your participation in the Program you will comply with all applicable laws (federal, state or otherwise) that govern marketing email, including without limitation, the CAN-SPAM Act of 2003 and all other anti-spam laws.\n\n<h2>Term of the Agreement and Program</h2>\nThe term of this Agreement will begin upon our acceptance of your Program application and will end when terminated by either party. Either you or we may terminate this Agreement at any time, with or without cause, by giving the other party written notice of termination. Upon the termination of this Agreement for any reason, you will immediately cease use of, and remove from your site, all links to <strong>[site url]</strong>, and all of our trademarks, trade dress, and logos, and all other materials provided by or on behalf of us to you pursuant hereto or in connection with the Program. <strong>[site name]</strong> reserves the right to end the Program at any time. Upon program termination, <strong>[site name]</strong> will pay any outstanding earnings accrued above <strong>$[payout minimum]</strong>.\n\n<h2>Termination</h2>\n<strong>[site name]</strong>, in its sole discretion, has the right to suspend or terminate your account and refuse any and all current or future use of the Program, or any other <strong>[site name]</strong> service, for any reason at any time. Such termination of the Service will result in the deactivation or deletion of your Account or your access to your Account, and the forfeiture and relinquishment of all potential or to-be-paid commissions in your Account if they were earned through fraudulent, illegal, or overly aggressive, questionable sales or marketing methods. <strong>[site name]</strong> reserves the right to refuse service to anyone for any reason at any time.\n\n<h2>Relationship of Parties</h2>\n\nYou and we are independent contractors, and nothing in this Agreement will create any partnership, joint venture, agency, franchise, sales representative, or employment relationship between the parties. You will have no authority to make or accept any offers or representations on our behalf. You will not make any statement, whether on your site or otherwise, that reasonably would contradict anything in this Section.\n\n<h2>Limitations of Liability</h2>\n\nWe will not be liable for indirect, special, or consequential damages (or any loss of revenue, profits, or data) arising in connection with this Agreement or the Program, even if we have been advised of the possibility of such damages. Further, our aggregate liability arising with respect to this Agreement and the Program will not exceed the total referral fees paid or payable to you under this Agreement.\n\n<h2>Disclaimers</h2>\n\nWe make no express or implied warranties or representations with respect to the Program or any products sold through the Program (including, without limitation, warranties of fitness, merchantability, noninfringement, or any implied warranties arising out of a course of performance, dealing, or trade usage). In addition, we make no representation that the operation of the <strong>[site name]</strong> will be uninterrupted or error-free, and we will not be liable for the consequences of any interruptions or errors.\n\n<h2>Independent Investigation</h2>\nYOU ACKNOWLEDGE THAT YOU HAVE READ THIS AGREEMENT AND AGREE TO ALL ITS TERMS AND CONDITIONS. YOU UNDERSTAND THAT WE MAY AT ANY TIME (DIRECTLY OR INDIRECTLY) SOLICIT CUSTOMER REFERRALS ON TERMS THAT MAY DIFFER FROM THOSE CONTAINED IN THIS AGREEMENT OR OPERATE WEB SITES THAT ARE SIMILAR TO OR COMPETE WITH YOUR WEB SITE. YOU HAVE INDEPENDENTLY EVALUATED THE DESIRABILITY OF PARTICIPATING IN THE PROGRAM AND ARE NOT RELYING ON ANY REPRESENTATION, GUARANTEE, OR STATEMENT OTHER THAN AS SET FORTH IN THIS AGREEMENT.\n\n<h2>Arbitration</h2>\nAny dispute relating in any way to this Agreement (including any actual or alleged breach hereof), any transactions or activities under this Agreement or your relationship with us or any of our affiliates shall be submitted to confidential arbitration, except that, to the extent you have in any manner violated or threatened to violate our intellectual property rights, we may seek injunctive or other appropriate relief in any state or federal court (and you consent to non-exclusive jurisdiction and venue in such courts) or any other court of competent jurisdiction. Arbitration under this agreement shall be conducted under the rules then prevailing of the American Arbitration Association. The arbitrator\'s award shall be binding and may be entered as a judgment in any court of competent jurisdiction. To the fullest extent permitted by applicable law, no arbitration under this Agreement shall be joined to an arbitration involving any other party subject to this Agreement, whether through class arbitration proceedings or otherwise.\n\n<h2>Miscellaneous</h2>\nThis Agreement will be governed by the laws of The United States, without reference to rules governing choice of laws. You may not assign this Agreement, by operation of law or otherwise, without our prior written consent. Subject to that restriction, this Agreement will be binding on, inure to the benefit of, and be enforceable against the parties and their respective successors and assigns. Our failure to enforce your strict performance of any provision of this Agreement will not constitute a waiver of our right to subsequently enforce such provision or any other provision of this Agreement.\n\nThe failure of <strong>[site name]</strong> to exercise or enforce any right or provision of the Terms of Service shall not constitute a waiver of such right or provision. The Terms of Service constitutes the entire agreement between you and <strong>[site name]</strong> and govern your use of the Service, superceding any prior agreements between you and <strong>[site name]</strong> (including, but not limited to, any prior versions of the Terms of Service).','yes'),(10482,'wpam_min_payout','20','yes'),(10483,'wpam_paypal_api_endpoint','dev','yes'),(10484,'wpam_db_version','1.6.1','yes'),(10485,'wpam_home_page_id','740','yes'),(10486,'wpam_aff_home_page','http://www.rasburytech.com/affiliate-home-2/','yes'),(10487,'wpam_register_page_id','717','yes'),(10488,'wpam_aff_reg_page','http://www.rasburytech.com/affiliate-home/affiliate-register/','yes'),(10489,'wpam_aff_login_page','http://www.rasburytech.com/affiliate-home/affiliate-login/','yes'),(10490,'wpam_aff_home_msg','This is the affiliates section of RTS. If you are an existing affiliate, please <a href=\"http://www.rasburytech.com/affiliate-home/affiliate-login/\">log in</a> to access your control panel.<br /><br />If you are not an affiliate, but wish to become one, you will need to apply. To apply, you must be a registered user on this website. If you have an existing account on this website, please <a href=\"http://www.rasburytech.com/affiliate-home/affiliate-login/\">log in</a>. If not, please <a href=\"http://www.rasburytech.com/affiliate-home/affiliate-register/\">register here</a>.','yes'),(10491,'wpam_aff_tnc_page','http://www.rasburytech.com/terms-and-conditions-2/','yes'),(10492,'wpam_default_creative_id','1','yes'),(10494,'wpam_payout_manual_enabled','0','yes'),(13565,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1508071479','no'),(13566,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Bear App Users Want WordPress Publishing Integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=71864\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/bear-app-users-want-wordpress-publishing-integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7003:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/06/Screen-Shot-2017-10-08-at-10.50.16-PM.png?ssl=1\"><img /></a></p>\n<p>Ever since the demise of <a href=\"http://codex.wordpress.org/Version_3.2\" rel=\"noopener\" target=\"_blank\">WordPress&#8217; old distraction-free writing mode</a>, users have been forced to look elsewhere for a truly zen writing experience. Gutenberg&#8217;s current design trajectory doesn&#8217;t seem to be putting it on track for delivering the minimalist writing environment that many writers crave. The project has a lot of publishing and design-related functionality to account for in its UI, but I am hopeful that the plugin ecosystem will offer extensions that pare Gutenberg back to just the essentials for writing.</p>\n<p>In the meantime, those in search of a minimalist writing experience have found it in dedicated writing apps like iA Writer, Ulysses, WriteRoom, OmmWriter, and others. The <a href=\"http://www.bear-writer.com/\" rel=\"noopener\" target=\"_blank\">Bear app</a>, a newcomer launched in 2016, is a rising favorite that works on iPhone, iPad, and Mac. Although somewhat better known as a note-taking app, Bear&#8217;s beautiful writing experience won the app a <a href=\"https://blog.bear-writer.com/thank-you-yes-you-for-our-2017-apple-design-award-1b13e702ee91\" rel=\"noopener\" target=\"_blank\">2017 Apple Design Award</a>.</p>\n<p>Bear blends the best features of a note-taking app with a writing app. Users can turn on Focus Mode using the bottom right icon, which hides the sidebar and note list to provide a more minimal writing space. Bear saves users&#8217; writing in real-time, offers in-line support for images, and syntax highlighting for 20+ programming languages. There are no distractions while the user is composing, as the editor instantly displays rich previews. It&#8217;s easy to see why Bear has become an instant favorite.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/Screen-Shot-2017-10-13-at-12.29.28-PM.png?ssl=1\"><img /></a></p>\n<p>Many Bear users still have the need to publish their writings to the web, a capability that the app doesn&#8217;t currently support. Naturally, a WordPress export or &#8220;Publish to WordPress&#8221; option is one of the most often requested features. However, <a href=\"http://www.shinyfrog.net/\" rel=\"noopener\" target=\"_blank\">Shiny Frog</a>, the company behind the Bear app, is not yet working on publishing features.</p>\n<p>&#8220;Medium and WordPress publishing features are on our todo list, but not on top priority right now,&#8221; Shiny Frog co-founder Danilo Bonardi <a href=\"http://help.shinyfrog.net/discussions/bear/2477-export-to-wordpress\" rel=\"noopener\" target=\"_blank\">said</a> when I asked last November about the company&#8217;s plans to support a WordPress export option.</p>\n<p>Other users have also posted to the app&#8217;s <a href=\"http://help.shinyfrog.net/\" rel=\"noopener\" target=\"_blank\">support forum</a> and its <a href=\"https://www.reddit.com/r/bearapp/\" rel=\"noopener\" target=\"_blank\">subreddit</a>, asking for WordPress integration:</p>\n<blockquote><p>I&#8217;m really enjoying using Bear for my writing, and the newer features are great, but I&#8217;m trying to get started with my own blog and more as I am developing my own business and being able to export to WordPress would be incredibly helpful for me going forward.</p></blockquote>\n<blockquote><p>This is the one feature that would allow me to switch from Ulysses.</p></blockquote>\n<blockquote><p>With Ulysses going to a (more expensive) subscription, the time seems right for Bear to offer a &#8220;publish to WordPress&#8221; feature that could match what Ulysses offers. This is about the only thing holding Bear back for me.</p></blockquote>\n<blockquote><p>I&#8217;m currently deciding between Bear and Ulysses, and right now the dealbreaker is Ulysses&#8217;s ability to push to WordPress. If you were able to build that functionality, it would seal the deal!</p></blockquote>\n<p>Bonardi <a href=\"https://www.reddit.com/r/bearapp/comments/6z9qum/feature_request_medium_integration/dmurk7m/\" rel=\"noopener\" target=\"_blank\">confirmed</a> again, as recently as last month, that the company is still keeping a tight focus and has not yet prioritized publishing to WordPress.</p>\n<p>&#8220;Publishing features have been asked before and we will address them sooner or later,&#8221; Bonardi said. &#8220;Our hopes are to integrate Bear with Medium/WordPress apps instead of implementing our own publishing tool with their APIs. Using their APIs is the other solution but in this scenario we have to build a specific UI for this functionality instead of relying on external apps.&#8221;</p>\n<p>In the meantime, Bear App support staff recommends using the Markdown export option, available in the free version. Additional export options, including HTML, are available Bear&#8217;s $14.99 per year Pro version, which is much more affordable than pricey competitors like <a href=\"https://ulyssesapp.com/\" rel=\"noopener\" target=\"_blank\">Ulysses</a> and others that cater specifically to long-form writing.</p>\n<p>Quadro also has an <a href=\"https://www.quadro.me/themes/unleash-the-bear\" rel=\"noopener\" target=\"_blank\">option to share Bear notes to both Medium and WordPress</a>. However, it&#8217;s not an official Bear utility and the workflow is rather complicated to set up. Users who have tried this option didn&#8217;t find it to save time over simply copying and pasting.</p>\n<h3>WordPress Needs Its Own Beautiful Writing Experience</h3>\n<p>WordPress publishing support for Bear doesn&#8217;t seem to be a major priority for the company at this time, but splitting up the writing and publishing process is a deal breaker for many who want a simple workflow that doesn’t involve copying and pasting between apps.</p>\n<p>Alternatively, what if WordPress could be known for its beautiful writing experience in core, without a user having to resort to plugins or third-party apps to get there? This seems like a reasonable expectation for Gutenberg, but the project has the added challenge of incorporating a lot of publishing, media, and legacy functionality into its UI in a way that is easily discoverable.</p>\n<p>Unfortunately, this has resulted in an interface that is constantly popping into view. With the right combination of clicks and hovers, a user can end up in situation like the one shown below in the screenshot &#8211; surrounded by formatting options and icons on all sides.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/06/Screen-Shot-2017-10-13-at-1.22.21-PM.png?ssl=1\"><img /></a></p>\n<p>Making it easy to publish to the web, which is WordPress&#8217; forte, isn&#8217;t as compelling if users have to look elsewhere to find a truly distraction-free writing experience.  Fortunately, minimalist writing apps like Bear can fill the gap until the WordPress plugin ecosystem can produce an interface where writing is a delight.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Oct 2017 22:17:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: WordPress 4.9 Protects Users From Fatal Errors Created in the Theme and Plugin Editors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-4-9-protects-users-from-fatal-errors-created-in-the-theme-and-plugin-editors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1923:\"<p>Over the years, there have been many discussions and debates on whether or not WordPress should have a built-in file editor for themes and plugins. The file editors, while convenient, allow users to easily trigger fatal errors that can be difficult to fix, especially if they don&#8217;t have FTP access.</p>\n<p>Instead of removing the editors from core, the WordPress development team has enhanced them by adding fatal error protection in WordPress 4.9. When a user accesses the theme or plugin editor for the first time, they&#8217;re presented with the following warnings. The warnings are a result of a <a href=\"https://core.trac.wordpress.org/ticket/31779\">three-year-old trac ticket</a>.</p>\n<img />Plugin Editor Warning\n<img />Theme Editor Warning\n<p>If you try to save changes to a file and WordPress detects a fatal error, the change is not saved and a warning message is displayed that explains where the error occurred. Although the changes are rolled back, the code in the editor is not replaced with the original. To replace the code, simply refresh the browser tab.</p>\n<img />Fatal Error Detected\n<p>In addition to safety features, the code editors are powered by <a href=\"https://codemirror.net/\">CodeMirror</a>, an open-source, JavaScript powered text editor that adds features such as line numbers. The plugin editor includes the ability to look up documentation for filters, hooks, and actions with many of the links pointing to the new <a href=\"https://developer.wordpress.org/\">WordPress Developers Resource</a> site.</p>\n<p>Even with the addition of CodeMirror in core, the file editors in WordPress are not a replacement for an integrated development environment. However, the warnings and fatal error protection are huge improvements that will prevent many users from creating a <a href=\"https://codex.wordpress.org/Common_WordPress_Errors\">White Screen of Death</a> situation on their sites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Oct 2017 21:25:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: GitHub Launches New Dependency Graph Feature with Security Alerts Coming Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/github-launches-new-dependency-graph-feature-with-security-alerts-coming-soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2930:\"<p>GitHub announced a new <a href=\"https://help.github.com/articles/listing-the-packages-that-a-repository-depends-on/\" rel=\"noopener\" target=\"_blank\">Dependency Graph</a> feature at the Github Universe conference yesterday. It lists all the dependencies for a repository and will soon identify known vulnerabilities. The graph can be accessed under the Insights tab and currently supports Ruby and JavaScript dependencies with Python coming soon.</p>\n<p>Public repositories display the graph by default and private repository owners also have the option to enable it. Below is a screenshot of <a href=\"https://github.com/WordPress/gutenberg/network/dependencies\" rel=\"noopener\" target=\"_blank\">Gutenberg&#8217;s dependency graph</a>:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-12-at-11.30.42-AM-e1507825905511.png?ssl=1\"><img /></a></p>\n<p>GitHub plans to extend dependency graphs to show security alerts when one of the dependencies is using a version that is publicly known to be vulnerable to a security issue. The alerts may also in some cases be able to suggest a security fix. Security alerts for dependencies is the first among a collection of security tools that GitHub has planned to release.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/dependency-graph.gif?ssl=1\"><img /></a></p>\n<p>The dependency graph isn&#8217;t yet as useful as it could be for many PHP-based WordPress projects, but GitHub&#8217;s decision to start with support for JavaScript and Ruby dependencies is in line with the data the company collected from repositories. JavaScript and Ruby are among the top four most popular languages on GitHub, as measured by the number of pull requests. JavaScript is by far the most popular and PHP isn&#8217;t too far behind Ruby, according to stats from the <a href=\"https://octoverse.github.com/\" rel=\"noopener\" target=\"_blank\">State of the Octoverse 2017</a>.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-12-at-12.35.41-PM-e1507830673184.png?ssl=1\"><img /></a></p>\n<p>GitHub is also launching new efforts to connect its massive community. The company reported 24 million developers working across 67 million repositories in 2017. The new community features are aimed at helping developers make meaningful connections in the vast sea of repositories on the platform. Users will notice a new “Discover Repositories” feed in their dashboards that makes recommendations based on their starred repositories and the people they follow.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-12-at-12.15.45-PM.png?ssl=1\"><img /></a></p>\n<p>GitHub has also launched a new curated <a href=\"https://github.com/explore\" rel=\"noopener\" target=\"_blank\">Explore</a> section to help users browse open source projects, topics, events, and resources.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Oct 2017 18:56:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Dev Blog: WordPress 4.9 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1626:\"<p>WordPress 4.9 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.9-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=41846&stop_rev=41777&limit=100&sfp_email=&sfph_mail=\">70 changes</a> in Beta 2.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Let’s test all of these:</em><br />\n<em>code editing, theme switches,</em><br />\n<em>widgets, scheduling.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Oct 2017 06:29:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WordPress Replaces Browserify with Webpack for Build Process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75656\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wordpress-replaces-browserify-with-webpack-for-build-process\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1898:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-11-at-6.51.54-PM.png?ssl=1\"><img /></a></p>\n<p>During a core <a href=\"https://make.wordpress.org/core/2017/05/24/javascript-chat-summary-for-may-23rd/\" rel=\"noopener\" target=\"_blank\">JavaScript chat held in May</a>, WordPress contributors agreed on using <a href=\"https://webpack.js.org/\" rel=\"noopener\" target=\"_blank\">Webpack</a> (and ES6 imports)  instead of Browserify for JavaScript bundling in the build process.</p>\n<p>&#8220;Since we split the media files in <a href=\"https://core.trac.wordpress.org/ticket/28510\" rel=\"noopener\" target=\"_blank\">#28510</a>, the core build process has used Browserify to combine the media files,&#8221; Adam Silverstein said in the <a href=\"https://core.trac.wordpress.org/ticket/40894\" rel=\"noopener\" target=\"_blank\">ticket</a> proposing the replacement. &#8220;While browserify has served us well, Webpack is probably a better long term choice for the project, especially with the introduction of a new JavaScript framework that may require a build.&#8221;</p>\n<p>Over the past four months contributors on the ticket have worked on making sure the Webpack setup is working well to build the files. WordPress core committer K. Adam White also reached out to some Webpack contributors for an additional review during the process before replacing Browserify as the JavaScript bundler.</p>\n<p>Webpack has rapidly gained popularity among the many utilities for bundling JavaScript files and is one of the most prominent examples of a project that has successfully found a sustainable source of funding through its account on <a href=\"https://opencollective.com/webpack\" rel=\"noopener\" target=\"_blank\">Open Collective</a>. The project funded its first full-time developer through the platform and has an estimated annual budget of $241,650, based on current donations.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Oct 2017 23:58:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: WPWeekly Episode 291 – All Hands on Deck on The Ship of Theseus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=75663&preview=true&preview_id=75663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-291-all-hands-on-deck-on-the-ship-of-theseus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2463:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I discuss the news of the week including DonateWC sponsoring its first recipient to WordCamp Cape Town, WordPress 4.9 Beta 1, and WooCommerce 3.2. We also have a bit of fun with Poopy.life and blurt out a few crappy puns. Last but not least, we dissect Matías Ventura&#8217;s vision of Gutenberg.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">WordPress 4.9 Beta 1 Released</a><br />\n<a href=\"https://woocommerce.wordpress.com/2017/10/11/woocommerce-3-2/\">WooCommerce 3.2 Released </a><br />\n<a href=\"https://wptavern.com/wooconf-2017-livestream-tickets-now-on-sale\">WooConf 2017 Livestream Tickets Now on Sale</a><br />\n<a href=\"https://wptavern.com/gutenberg-engineer-matias-ventura-unpacks-the-vision-for-gutenblocks-front-end-editing-and-the-future-of-wordpress-themes\">Gutenberg Engineer Matías Ventura Unpacks the Vision for Gutenblocks, Front-End Editing, and the Future of WordPress Themes</a><br />\n<a href=\"https://wptavern.com/poopy-life-launches-pro-version-at-wpsandbox-io-aimed-at-theme-and-plugin-developers\">Poopy.life Launches Pro Version at WPsandbox.io Aimed at Theme and Plugin Developers</a><br />\n<a href=\"https://wptavern.com/disqus-data-breach-affects-17-5-million-accounts\">Disqus Data Breach Affects 17.5 Million Accounts</a><br />\n<a href=\"https://donatewc.org/sponsorship-recipients/were-sending-a-speaker-to-wordcamp-cape-town/\">We’re sending a speaker to WordCamp Cape Town</a><br />\n<a href=\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\">GitLab Raises $20 Million Series C Round, Adds Matt Mullenweg to Board of Directors</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, October 18th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #291:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Oct 2017 23:10:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"WPTavern: WooCommerce 3.2 Adds Ability to Apply Coupons in the Admin, Introduces Pre-Update Version Checks for Extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75637\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/woocommerce-3-2-adds-ability-to-apply-coupons-in-the-admin-introduces-pre-update-version-checks-for-extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4252:\"<p><a href=\"https://woocommerce.wordpress.com/2017/10/11/woocommerce-3-2/\" rel=\"noopener\" target=\"_blank\">WooCommerce 3.2</a> has arrived a week ahead of the plugin&#8217;s upcoming <a href=\"https://wptavern.com/seattle-to-host-wooconf-2017-in-october-conference-to-focus-on-developers\" rel=\"noopener\" target=\"_blank\">WooConf Developers Conference</a> in Seattle. The release went into beta at the end of August and an extra week was added to the RC testing phase to give store owners and extension developers ample opportunity to prepare for the update.</p>\n<p>Version 3.2 adds the ability for administrators to apply coupons to existing orders in the backend of the store. This feature was <a href=\"http://ideas.woocommerce.com/forums/133476-woocommerce/suggestions/3867647-ability-to-apply-coupons-manually-when-manually-ad\" rel=\"noopener\" target=\"_blank\">requested on the WooCommerce ideas board</a> four years ago and had received 374 votes for consideration.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/woocommerce-apply-coupon.png?ssl=1\"><img /></a></p>\n<p>WooCommerce will now automatically re-calculate the order total after applying the coupon and the same in reverse if a coupon is removed. Although it seems like a small improvement, implementing it without breaking extensions was a fairly complex endeavor for the WooCommerce team.</p>\n<p>&#8220;This was tricky to develop because of the way the cart and coupons were built initially, so some refactoring was needed, but we tried to implement these changes in a backwards compatible manner so extensions wouldn’t require changes,&#8221; WooCommerce lead developer Mike Jolley said.</p>\n<h3>WooCommerce 3.2 Adds Extension Support Version Checks Prior to Core Updates</h3>\n<p>One of the most exciting new features in 3.2 is support for a new plugin header that extension developers can use to specify which versions of WooCommerce have been tested and confirmed to be compatible. This information will be displayed to users in the plugin update screen when future WooCommerce core updates become available.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/woocommerce-extensions-version-checks.png?ssl=1\"><img /></a></p>\n<p>These warnings save time for store owners by identifying extensions that need further research and testing before applying a core update. It makes it easier for admins to confidently update their installations without having to worry about extensions breaking. After a few more major releases of the plugin, it will be interesting to see how this new system improves updates overall and how other plugins with their own ecosystems of extensions might be able to benefit from something similar.</p>\n<p>Version 3.2 also brings improved accessibility for select boxes, updates to the new store setup wizard, a new “resend” option on the edit order page, and a host of admin UI enhancements that make it easier to manage products and extensions.</p>\n<h3>WooCommerce.com Adds New Subscription Sharing Feature</h3>\n<p>Customers who have purchased extensions from WooCommerce.com can now take advantage of a new <a href=\"https://docs.woocommerce.com/document/managing-woocommerce-com-subscriptions/#section-11\" rel=\"noopener\" target=\"_blank\">subscription sharing feature</a> that allows them to specify additional sites (via WooCommerce.com email address) where they want the extension/key to be active. This is especially useful for agencies, developers, and multisite store owners who can now grant the use of an extension without having to connect their own accounts to client sites. The original purchaser of the extension will be the one billed for the subscription and can revoke access for connected sites at any time.</p>\n<p>WooCommerce 3.2 had <a href=\"https://github.com/woocommerce/woocommerce/compare/3.1.2...3.2.0\" rel=\"noopener\" target=\"_blank\">1610 commits</a> from 98 contributors. Currently, 47% of installs are still on 3.1 but that number should go down as store owners start updating to the latest. The WooCommerce team reports that all changes should be backwards compatible with 3.0 and 3.1 sites, but site owners will still want to test their extensions before applying the 3.2 update.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Oct 2017 19:07:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: Queer Woman In Tech … In A Bowtie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/queer-woman-tech-bowtie/#utm_source=rss&utm_medium=rss&utm_campaign=queer-woman-tech-bowtie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7663:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/10/101117-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I have found the WordPress Community the most diverse and accepting space for our beautiful, vast array of queer individuals in tech, period.\" /><p>Did you know there are still several states in the US where employers can fire me for being gay? Legislation and protections have improved in the past several years, but there are still large gaps throughout the United States for queer and trans people. In addition, I hear horror stories of toxic workplaces that my LGBTQ+ friends have endured and/or have pushed them out of a job due to not feeling safe. I have been incredibly lucky to have a career full of supportive companies where I have felt safe and accepted. But I also have another big thing that has helped me for over 13 years: WordPress.</p>\n<h3>A Little History</h3>\n<p>Back when I was in high school in the mid nineties, I was fortunate enough to have access to a computer that connected to this new “internet” thing. This was in 1996 when we had to call the internet. I remember vividly spending nights browsing all these “homepages” of people—even people that were my age—from all over the world. One night I thought, “One day I want to make one of these…” I literally stopped mid thought and decided that I was just going to start right that instant. I signed up for a free Angelfire account using my mom’s email address, and was off and running. Angelfire gave you an advanced option of a code editor, so I copied and pasted and poked and prodded code all summer.</p>\n<blockquote><p>As a result, I taught myself a good chunk of HTML by creating some of the ugliest pages in internet history.</p></blockquote>\n<p>But that started me on a path that I would never look back from. I saw such great potential in connecting with others using this whole “World Wide Web” thing I had just discovered.</p>\n<h3>A Web Log</h3>\n<p>Fast forward some years into college and the dawn of the 2000’s when this crazy idea of sharing a journal on the internet started. Web logs—later termed “blogs”—started popping up left and right. I hopped on board with a blogger.com blog almost exactly 17 years ago (10/19/00), then moved to this blogging platform known as b2 just about a year later. Some may recognize this, because b2 by cafelog was the codebase forked to create the first WordPress. So technically, I’ve been using WordPress since before it was WordPress.</p>\n<h3>Creating Community</h3>\n<p>Back when blogging first became a thing, commenting systems weren’t developed yet, so it was more like just shouting into space wondering if anyone was listening. But people were. Some of us added message boards to our sites.</p>\n<blockquote><p>Conversations happened, connections were made and communities started to form. Some of these connections are still some of my close friends today.</p></blockquote>\n<p>We share a special bond because we all kind of learned the internet together. These created communities also helped me feel less like an outcast and gave me hope that I wasn’t the only one that felt out of place like I did. People’s blogs were vulnerable glimpses into their lives and hardships, really helping me see I was not alone and even helping me face some of my own struggles. Back then I didn’t realize I was gay, but I did feel strangely out of place in so many parts of my life.</p>\n<h3>Coming Out</h3>\n<p>In my late 20’s I finally realized, accepted and came out to myself that I was a lesbian. For many years following I stumbled around a lot to find my true expression and identity. Not to mention shed—and recover from—the many external pressures that were forcing me into a completely fabricated heteronormative “box” that I did not fit. It took well into my 30’s to find my comfort zone as an androgynous/masculine of center expressing, gay woman. With that, my outward expression and style creates a daily “coming out” to everyone I meet… or at the very least, draws attention to me when in midwestern heteronormative spaces. Thus, putting me a bit more at risk of being targeted for being queer.</p>\n<h3>And now back to WordPress</h3>\n<p>Back to the subject at hand, how does all this relate to WordPress? Throughout this whole journey of self discovery, I was continually using and learning WordPress as well. By the time I had come out, I had learned enough about working with WordPress templates to create custom websites. This gave me the tools to create my own job if I ever lost my full time employment, or would find myself in a toxic, unhealthy—or even dangerous—working environment.</p>\n<blockquote><p>WordPress became my ticket to being self sufficient and confident in my career.</p></blockquote>\n<p>On top of it all, I have found the WordPress community the most diverse and accepting space for our beautiful, vast array of queer individuals in tech, period. This made the decision to join in the WordPress community an easy and safe choice. I had not seen many people like me at tech-related events before, let alone speaking at one. But WordCamps have given me the ability to be that gay woman in a bowtie speaking at the front of the room that I had not seen represented before. And that I can do that without fear is priceless! WordPress and this wonderful community has helped me feel more confident in who I am as a web creator, but more importantly, a person.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Queer Woman In Tech &#8230; In A Bowtie\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Queer%20Woman%20In%20Tech%20%26%238230%3B%20In%20A%20Bowtie&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fqueer-woman-tech-bowtie%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Queer Woman In Tech &#8230; In A Bowtie\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fqueer-woman-tech-bowtie%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fqueer-woman-tech-bowtie%2F&title=Queer+Woman+In+Tech+%26%238230%3B+In+A+Bowtie\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Queer Woman In Tech &#8230; In A Bowtie\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/queer-woman-tech-bowtie/&media=https://heropress.com/wp-content/uploads/2017/10/101117-min-150x150.jpg&description=Queer Woman In Tech ... In A Bowtie\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Queer Woman In Tech &#8230; In A Bowtie\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/queer-woman-tech-bowtie/\" title=\"Queer Woman In Tech &#8230; In A Bowtie\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/queer-woman-tech-bowtie/\">Queer Woman In Tech &#8230; In A Bowtie</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Oct 2017 12:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Tracy Apps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WPTavern: Gutenberg 1.4 Adds HTML Mode for Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wptavern.com/gutenberg-1-4-adds-html-mode-for-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3429:\"<p><a href=\"https://make.wordpress.org/core/2017/10/10/whats-new-in-gutenberg-october-10th/\" rel=\"noopener\" target=\"_blank\">Gutenberg 1.4</a> was released today with a new feature that allows users to <a href=\"https://github.com/WordPress/gutenberg/pull/2797\" rel=\"noopener\" target=\"_blank\">edit HTML on a per-block basis</a>. HTML mode can be triggered by toggling the ellipsis menu and selecting the HTML icon. This will switch the block between visual and text mode, without having to switch the entire document into text mode.</p>\n<p><img src=\"https://i1.wp.com/cldup.com/ghvzrEw2wk.gif?w=627&ssl=1\" /></p>\n<p>Contributors debated on whether or not to place the HTML button in the quick toolbar or to add the button to the side of the block. Eventually, they landed on putting the trash icon, the cog settings, and this new HTML mode under an ellipsis.</p>\n<p>Gutenberg testers will also notice that version 1.4 <a href=\"https://github.com/WordPress/gutenberg/pull/2878\" rel=\"noopener\" target=\"_blank\">redesigns the editor&#8217;s header</a>, grouping content actions to the left and post actions to the right.</p>\n<p>This release adds the initial REST API infrastructure for reusable global blocks, an idea Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/1516\" rel=\"noopener\" target=\"_blank\">proposed</a> several months ago. The <a href=\"https://github.com/WordPress/gutenberg/pull/2503\" rel=\"noopener\" target=\"_blank\">pull request</a> was created by new Gutenberg contributor Robert Anderson, a web and mobile developer at Tumblr. It is based on the technical details that Weston Ruter <a href=\"https://github.com/WordPress/gutenberg/issues/2081\" rel=\"noopener\" target=\"_blank\">outlined</a> for creating dynamic reusable blocks. Anderson highlighted a few examples of what this infrastructure will eventually enable for users:</p>\n<ul>\n<li>Convert a block into a reusable block, and give it a name</li>\n<li>Convert a reusable block back into a regular block</li>\n<li>Edit a reusable block within a post and have the changes appear across all posts</li>\n<li>Insert an existing reusable block into a post</li>\n<li>Delete an existing reusable block</li>\n</ul>\n<p>Anderson said the next step is adding a core/reusable-block block to the editor that can be rendered and edited, followed by a UI for adding, deleting, attaching, and detaching reusable blocks.</p>\n<p>Gutenberg 1.4 will now <a href=\"https://github.com/WordPress/gutenberg/pull/2877\" rel=\"noopener\" target=\"_blank\">show a users&#8217; most frequently used blocks</a> when hovering over the inserter. If the editor doesn&#8217;t have enough usage data, it will display the paragraph and image blocks by default.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-10-at-10.49.18-PM.png?ssl=1\"><img /></a></p>\n<p>Version 1.3 of the plugin introduced <a href=\"https://wptavern.com/gutenberg-1-3-adds-new-feedback-option-for-plugin-testers\" rel=\"noopener\" target=\"_blank\">a new feedback option for testers</a> with a link in the Gutenberg sidebar menu. Ventura reported that the team has received 12 responses so far, which included four bugs and two proposed enhancements. Check out the full <a href=\"https://make.wordpress.org/core/2017/10/10/whats-new-in-gutenberg-october-10th/\" rel=\"noopener\" target=\"_blank\">changelog for 1.4</a> for more details on what&#8217;s new in the latest beta release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Oct 2017 04:57:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: GitLab Raises $20 Million Series C Round, Adds Matt Mullenweg to Board of Directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6213:\"<p><a href=\"https://about.gitlab.com/\" rel=\"noopener\" target=\"_blank\">GitLab</a> celebrated its <a href=\"https://gitlab.com/gitlab-org/gitlab-ce/commit/9ba1224867665844b117fa037e1465bb706b3685\" rel=\"noopener\" target=\"_blank\">sixth anniversary as an open source project</a> yesterday and <a href=\"https://about.gitlab.com/2017/10/09/gitlab-raises-20-million-to-complete-devops/\" rel=\"noopener\" target=\"_blank\">announced</a> a $20 million Series C round of funding led by <a href=\"https://www.gv.com/team/dave-munichiello/\" rel=\"noopener\" target=\"_blank\">GV General Partner Dave Munichiello</a>. The company&#8217;s CEO Sid Sijbrandij joined Municheiello with guest hosts, Adam Stacoviak and Jerod Santo from The Changelog podcast, for the <a href=\"https://www.youtube.com/watch?v=5dhjw-TT964\" rel=\"noopener\" target=\"_blank\">GitLab live event</a> that aired yesterday.</p>\n<p>&#8220;When we think about investing, we want to be involved in the fastest-growing companies in the world,&#8221; Munichiello said. &#8220;We think about that a little differently than most firms in that we are looking for looking for dev-focused tools. We think software will disrupt the enterprises of the future and so we think the best tools that help enable and empower the best software teams will become enormous companies over time. We&#8217;re certainly seeing that with GitLab.&#8221;</p>\n<p>Munichiello said he favors investing in open source because it is &#8220;the most secure and the best software in the world.&#8221; Although GitLab is a much smaller company than its more prominent rivals GitHub and Bitbucket, it currently dominates the self-hosted Git market with its open source tools. GitLab is used by 100,000 organizations and customers include NASA, the Nasdaq Stock Market, Sony Corp, Comcast, Bayer, among many other large companies.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-10-at-11.50.49-AM.png?ssl=1\"><img /></a></p>\n<p>In addition to the $20 million in funding, the company also announced that it has appointed Matt Mullenweg to its board of directors.</p>\n<p>&#8220;I&#8217;m very excited to announce that Matt Mullenweg, the CEO of Automattic and founder of WordPress decided to join our board,&#8221; Sid Sijbrandij said. &#8220;He&#8217;s a leading figure on how to think about open source and how to build a business on that and a remote-only work culture.&#8221; Sijbrandij said GitLab&#8217;s board of directors sets the tone for what the company is allowed to spend its money on, how it approaches the balance between open source and closed source, and the features that the team decides to make money with.</p>\n<p>&#8220;GitLab’s powerful momentum and scaling have a lot of parallels to Automattic and WordPress in their early days,&#8221; Mullenweg said. &#8220;WordPress had to battle a lot of competitors, and ultimately came out on top as a successful company on an open source business model. I hope to help GitLab achieve the same triumph. Fundamentally, I want to help create the kind of internet that I want to live in and I want my children to live in, one that reaches a global audience and one that is able to make a difference.&#8221;</p>\n<p>Mullenweg also said he was impressed with GitLab&#8217;s transparency and how the company shares many of its internal documents, whether it&#8217;s a sales manual or employee onboarding information. GitLab, which employees nearly 200 people, also shares a similar work culture to Automattic, as 100% of the team works remotely.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“Not only being ahead in terms of transparency, GitLab is exciting for me bc I think distributed work is the future of work.” &#8211;<a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f4bb.png\" alt=\"?\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/2.3/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /></p>\n<p>&mdash; GitLab (@gitlab) <a href=\"https://twitter.com/gitlab/status/917441432847376385?ref_src=twsrc%5Etfw\">October 9, 2017</a></p></blockquote>\n<p></p>\n<p>When asked if there is anything down the line for collaboration between GitLab and WordPress, Mullenweg said, &#8220;It&#8217;s definitely something on our minds. Core WordPress is still Trac and Subversion, so I think that it&#8217;s not our top priority this year, but in the future it&#8217;s definitely on the radar.&#8221;</p>\n<p>GitLab started with basic version control and an issues tracker. Last year  the company announced its first master plan to make GitLab a complete developer solution, which it completed in December 2016. Sijbrandij said the company is aiming to deliver a complete DevOps solution in 2018, a set of tools that unifies the development and operations work into a single user experience.</p>\n<p>GitLab has been working towards the goal of supporting the complete DevOps lifecycle by adding tools for application performance monitoring and server monitoring. This enables developers and operations managers to keep tabs on code after it is deployed, while using a single user interface, the same tools, and one permissions model.</p>\n<p>&#8220;It used to be that development and operations were separate parts in a company and they had their own tools and those tools were different,&#8221; Sijbrandij said. &#8220;You needed different expertise to operate them. Now devops aims to align and integrate those groups. What happens is people took the tools from two different departments and tried to glue them together. They duck taped the tools together. That&#8217;s what you see in traditional devops &#8211; the glue between the traditional developer tools and the traditional operating tools, and it&#8217;s not a very good experience. We want to take the complete set of tooling we have for development and extend it all the way to operations, so it&#8217;s about creating a single application that does both.&#8221;</p>\n<p>Check out the recording of the GitLab live event below for a more in-depth explanation of Sijbrandij&#8217;s vision for creating a complete DevOps solution in 2018.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Oct 2017 18:55:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WordPress 4.9 Adds Scheduling, Drafts, and Front-End Preview Links to the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/wordpress-4-9-adds-scheduling-drafts-and-front-end-preview-links-to-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2012:\"<p>While <a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">WordPress 4.8</a> focused on adding new widgets, visual improvements to links in the text editor, and a new dashboard widget that displays nearby events, WordPress 4.9 places a heavy emphasis on customization.</p>\n<p>In WordPress 4.9, the Customizer has a new publish button with options to publish, save draft, or schedule changes. Edits made via the Customizer are called changesets that have status&#8217; similar to posts. These improvements were incorporated from the <a href=\"https://wordpress.org/plugins/customize-snapshots/\">Customize Snapshots</a> and <a href=\"https://wordpress.org/plugins/customize-posts/\">Customize Posts</a> feature plugins.</p>\n<img />New Customizer Publishing Options\n<p>Those who design sites will appreciate the ability to easily <a href=\"http://drab-yak.w4.poopy.life/?customize_changeset_uuid=e34fb3ad-ecd8-4bd6-b53a-726cf3d1c46e\">share a link</a> that provides a front-end preview to changes. Note the About This Site widget at the bottom of the page.</p>\n<p>This eliminates the need to publish changes to a live site or give users access to the WordPress backend. Links are generated by saving a draft in the Customizer.</p>\n<p>Clicking the Discharge Changes link removes unpublished edits. Scheduling changes is as simple as choosing a day and time for them to take place.</p>\n<p>These are just a few of the improvements in WordPress 4.9 which you can try out for yourself by downloading and testing <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">WordPress 4.9 beta 1</a> on a test site. Alternatively, you can install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Testing plugin</a> on a test site, configure it for point release nightlies, and update to 4.9 Beta 1.</p>\n<p>Stay tuned as we go in-depth on some of the other features in WordPress 4.9 in the coming days.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Oct 2017 13:32:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WPTavern: Gutenberg Engineer Matías Ventura Unpacks the Vision for Gutenblocks, Front-End Editing, and the Future of WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://wptavern.com/gutenberg-engineer-matias-ventura-unpacks-the-vision-for-gutenblocks-front-end-editing-and-the-future-of-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8642:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/ship-bottle.jpg?ssl=1\"><img /></a>photo credit: KaylaKandzorra <a href=\"http://www.flickr.com/photos/48077358@N02/4952091078\">i miss you grampa.</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>In a post titled <a href=\"http://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\" rel=\"noopener\" target=\"_blank\">Gutenberg, or the Ship of Theseus</a>, Matías Ventura breaks down the vision for how the project will transform WordPress&#8217; content creation experience and the decisions the team has made along the way. Ventura describes how WordPress has become difficult to customize, as online publishing has embraced rich media and web design has evolved in complexity over the years.</p>\n<p>&#8220;WordPress can build incredible sites, yet the usability and clarity that used to be a driving force for its adoption has been fading away,&#8221; Ventura said. &#8220;The present reality is that many people struggle using WordPress as a tool for expression.&#8221;</p>\n<p>Ventura&#8217;s words hint at the growing threats from competitors whose interfaces define users&#8217; current expectations for a front-end editing experience. If WordPress is to stay afloat in a sea of competitors, it can no longer continue expanding its capabilities while leaving a disconnect between what users see while editing in the admin versus what is displayed on the frontend.</p>\n<p>&#8220;WordPress has always been about the user experience, and that needs to continue to evolve under newer demands,&#8221; Ventura said. &#8220;Gutenberg is an attempt at fundamentally addressing those needs, based on the idea of content blocks. It’s an attempt to improve how users interact with their content in a fundamentally visual way, while at the same time giving developers the tools to create more fulfilling experiences for the people they are helping.&#8221;</p>\n<p>Ventura elaborated on the foundations of the block approach to content creation and how it will expose more functionality to users in a unified interface, bringing more opportunities to the plugin ecosystem. The post offers some clarity for those who have been wondering about the decision to &#8220;make everything a block.&#8221; Ventura also anticipates that blocks will become a big part of WordPress theming in the future:</p>\n<blockquote><p>Themes can also provide styles for individual blocks, which can, in aggregation, fundamentally alter the visual appearance of the whole site. You can imagine themes becoming more about the presentation of blocks, while the functional parts can be extracted into blocks (which can potentially work across multiple theme variations). Themes can also provide templates for multiple kind of pages—colophon, products, portfolios, etc., by mixing blocks, setting them up as placeholders, and customizing their appearance.</p></blockquote>\n<p>Ventura also introduced a few new possibilities that Gutenberg could enable. He shared a video showing how granular control over each block can pave the way for a future where WordPress core allows for real-time collaborative editing. This is a feature that has been painfully lacking from the CMS but is nearer on the horizon with Gutenberg in place.</p>\n<p>&#8220;This same granularity is allowing us to develop a collaborative editing framework where we can lock content being edited by a peer on per block basis, instead of having to lock down the whole post,&#8221; Ventura said.</p>\n<p></p>\n<p>Ventura sees Gutenberg as the path to finally bringing front-end editing to WordPress:</p>\n<blockquote><p>Once Gutenberg is capable of handling all the pieces that visually compose a site—with themes providing styles for all the blocks—we end up with an editor that looks exactly like the front-end. (And at that point, we might just call it front-end editing.) Yet we’d had arrived at it through gradually improving the pieces of our familiar ship, in a way that didn’t cause it to collapse or alienated the people aboard. We want to accomplish this in a way that would allow us to refine and correct as we iterate and experience the reality of what is being built and how it is being used.</p></blockquote>\n<p>He likened the challenge of the Gutenberg project to upgrading the materials on a ship while ensuring that it continues to sail. As there are many passengers who depend on the boat, completely breaking it for the purpose of rebuilding is not an acceptable way forward.</p>\n<p>&#8220;It is an attempt at improving how users can connect with their site in a visual way, not at removing the flexibility and power that has made WordPress thrive,&#8221; Ventura said. &#8220;There might be a time when the old ways become obsolete and disappear, absorbed by the richer and clearer interface of blocks, but we are doing as much as possible to make this a process. The old doesn’t have to disappear suddenly, it can be gradually shaped into the new.&#8221;</p>\n<p>Comments are not enabled on the post, but it has received mostly positive feedback on Twitter. For some, it clarifies the direction of Gutenberg, the purpose of blocks and the possibilities they enable. Others in the community are on board with the concepts behind Gutenberg but are not comfortable with the tentative timeline for its inclusion in core. Ventura&#8217;s post does not address many of the more practical concerns the community has about allowing enough time for the WordPress product ecosystem to get ready for Gutenberg.</p>\n<p>Matt Mullenweg has confirmed that <a href=\"https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0\" rel=\"noopener\" target=\"_blank\">Gutenberg will ship with WordPress 5.0</a> whenever Gutenberg is ready and most recently said that delays on selecting the JavaScript framework &#8220;will likely delay Gutenberg at least a few weeks, and may push the release into next year.&#8221;</p>\n<p>Last week, a post published by Yoast SEO founder Joost de Valk sparked conversation with his proposed <a href=\"https://yoast.com/gutenberg-alternative-approach/\" rel=\"noopener\" target=\"_blank\">alternative approach to Gutenberg</a>, which calls for a slower, staged rollout for plugin authors.</p>\n<p>&#8220;In this point of time, it’s not possible for plugins at all to integrate with Gutenberg,&#8221; de Valk said. &#8220;How on earth should plugin authors be able to build their integrations within a few months? That’s not possible. At least not without breaking things.&#8221;</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/Gutenberg-2.2-block-level.jpg?ssl=1\"><img /></a>His proposal recommends keeping the idea of blocks and making over the admin for WordPress 5.0 but leaving the meta boxes and toolbar untouched.</p>\n<p>&#8220;We are very enthusiastic about the idea of blocks, but have strong concerns about some of the technical choices and the speed of the implementation process,&#8221; de Valk said. &#8220;We are also worried about the lack of priority given to accessibility issues in the project. But most importantly, we are very much concerned about the fact that plugins are not able to integrate with the new editor.&#8221;</p>\n<p>It&#8217;s impossible for developers to have a clear understanding of the right way to extend Gutenberg right now. The JavaScript framework for the plugin has not yet been announced and critical issues regarding how block data should be stored are just now being floated for discussion.</p>\n<p>&#8220;The Editor/Gutenberg team would like the broader core group to start thinking about and discussing how block data is stored,&#8221; Ventura proposed during last week&#8217;s core development meeting. &#8220;We currently (specially after allowing meta attributes) have a lot of ways to store block data, with different tradeoffs. It’s going to be important to communicate when each is appropriate. This will come through examples and documentation, but generally such knowledge has also spread by core contributors doing talks and blog posts, etc.&#8221;</p>\n<p>Further collaboration from the broader community of WordPress core contributors should bring the project closer to being able to deliver the documentation developers need in order to follow best practices for extending the new editor. In the meantime, Ventura&#8217;s <a href=\"http://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\" rel=\"noopener\" target=\"_blank\">post</a> is a great read for understanding the larger vision behind Gutenberg and where it is headed.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Oct 2017 03:56:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Potential of Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47605\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2017/10/potential-of-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:456:\"<p>Matias Ventura, the lead of the editor focus for WordPress, has written <a href=\"http://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">Gutenberg, or the Ship of Theseus</a> to talk about how Gutenberg&#x27;s approach will simplify many of the most complex parts of WordPress, building pages, and theme editing. If you want a peek at some of the things coming down the line with Gutenberg, including serverless WebRTC real-time co-editing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Oct 2017 12:47:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WPThemeDoc: A Single-File HTML Template for Documenting WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wpthemedoc-a-single-file-html-template-for-documenting-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2142:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/writing.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/2FS8R15QYN\">Lia Leslie</a>\n<p><a href=\"https://themebeans.com/\" rel=\"noopener\" target=\"_blank\">ThemeBeans</a> founder Rich Tabor has <a href=\"https://richtabor.com/wpthemedoc/\" rel=\"noopener\" target=\"_blank\">open sourced WPThemeDoc</a>, the template he uses for documenting his commercial WordPress themes. Tabor is also the creator of <a href=\"https://wptavern.com/new-merlin-wp-onboarding-wizard-makes-wordpress-theme-installation-and-setup-effortless\" rel=\"noopener\" target=\"_blank\">Merlin WP</a>, a theme onboarding wizard that makes setup effortless for users. After applying his aesthetic talents to the documentation aspect of his business, he decided to package up his efforts and release <a href=\"https://github.com/richtabor/WPThemeDoc\" rel=\"noopener\" target=\"_blank\">WPThemeDoc on GitHub</a> to benefit other theme developers.</p>\n<p>WPThemeDoc is neatly organized and easy to navigate. It can be used without any design modifications or as a starting point for your own branded documentation design. Check out the <a href=\"http://docs.themebeans.com/york/\" rel=\"noopener\" target=\"_blank\">live demo</a> documenting Tabor&#8217;s York Pro theme.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/wpthemedoc.jpg?ssl=1\"><img /></a></p>\n<p>The template is a single HTML file that is easy to extend by adding or removing sections. It includes a set of &#8220;find and replace&#8221; variables that developers can use to quickly customize the document&#8217;s information for their own themes. The template itself requires very little documentation, as it uses nothing more than simple HTML and CSS.</p>\n<p>For many theme developers documentation is a chore &#8211; it&#8217;s not the fun part of creating themes. WPThemeDoc makes documentation as simple as filling in the blanks. It is licensed under the GPL v2.0 or later and feedback and contributions are <a href=\"https://github.com/richtabor/WPThemeDoc\" rel=\"noopener\" target=\"_blank\">welcome on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Oct 2017 04:44:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Disqus Data Breach Affects 17.5 Million Accounts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75434\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/disqus-data-breach-affects-17-5-million-accounts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2094:\"<p><a href=\"https://disqus.com/\">Disqus</a>, a comment management and hosting service, <a href=\"https://blog.disqus.com/security-alert-user-info-breach\">has announced</a> it suffered a data breach that affects 17.5 million users. A snapshot of its database from 2012 with information dating back to 2007 containing email addresses, usernames, sign-up dates, and last login dates in plain-text were exposed.</p>\n<p>Passwords hashed with the SHA1 protocol and a salt for about one-third of affected users are also included in the snap-shot. Disqus was made aware of the breach and received the exposed data on October 5th by <a href=\"https://www.troyhunt.com/\">Troy Hunt</a>, an independent security researcher. Today, the service contacted affected users, reset their passwords, and publicly disclosed the incident.</p>\n<p>Jason Yan, CTO of Disqus, says the company has no evidence that unauthorized logins are occurring due to compromised credentials. &#8220;No plain-text passwords were exposed, but it is possible for this data to be decrypted (even if unlikely),&#8221; Yan said.</p>\n<p>&#8220;As a security precaution, we have reset the passwords for all affected users. We recommend that all users change passwords on other services if they are shared. At this time, we do not believe that this data is widely distributed or readily available. We can also confirm that the most recent data that was exposed is from July, 2012.&#8221;</p>\n<p>Since emails were stored in plain-text, it&#8217;s possible affected users may receive unwanted email. Disqus doesn&#8217;t believe there is any threat to user accounts as it has made improvements over the years to significantly increase password security. One of those improvements was changing the password hashing algorithm from SHA1 to bcrypt.</p>\n<p>If your account is affected by the data breach, you will receive an email from Disqus requesting that you change your password. The company is continuing to investigate the breach and will share new information on <a href=\"https://blog.disqus.com/\">its blog</a> when it becomes available.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 Oct 2017 03:13:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: Poopy.life Launches Pro Version at WPsandbox.io Aimed at Theme and Plugin Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/poopy-life-launches-pro-version-at-wpsandbox-io-aimed-at-theme-and-plugin-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6661:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/sandbox.png?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/hiljainenmies/3580475943/\">hiljainenmies</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>Six months ago, the team behind <a href=\"http://www.wpallimport.com/\" rel=\"noopener\" target=\"_blank\">WP All Import</a> and <a href=\"https://www.oxygenapp.com/try\" rel=\"noopener\" target=\"_blank\">Oxygen</a> <a href=\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\" rel=\"noopener\" target=\"_blank\">opened Poopy.life to the public</a>, a service that offers free unlimited WordPress installs for anyone who needs a temporary testing site. Public testing went well enough that a commercial tier of the service is now available at <a href=\"https://wpsandbox.io/\" rel=\"noopener\" target=\"_blank\">WPSandbox.io</a>, with plans ranging from $49/month &#8211; $699/month, depending on the number of installs required.</p>\n<p>&#8220;On any given day we have around 3-4K active installs,&#8221; WP All Import team lead Joe Guilmette said. &#8220;We actually got around 7K the first day and the infrastructure didn’t go down. So we were pretty stoked.&#8221;</p>\n<p>Guilmette said a few plugin and theme shops are using the service and one developer even wrote a script to iframe their poopy.life installs for use in their theme demos.</p>\n<p>&#8220;We’ll probably put a stop to that at some point, but it was pretty cool to see,&#8221; Guilmette said. &#8220;Tons of people use it for testing plugins, themes, and just all sorts of general WordPress testing. We’ve been using this internally for years, and every time we&#8217;d fire up localhost or a testing install, it’s just faster to use poopy.life.&#8221;</p>\n<p>Pro users get all the convenience of Poopy.life under the more business-friendly wpsandbox.pro domain with a dashboard to manage installs, SSH and SFTP access to their installs, and the ability to hot-swap between PHP versions. Having Poopy.life open to the public has given the team an opportunity to address any remaining pain points with hosting thousands of test installs.</p>\n<p>&#8220;Since launching poopy.life everything has actually been pretty smooth,&#8221; Guilmette said. &#8220;We&#8217;ve already been using various versions of this internally to sell millions of dollars worth of plugins over the last five years. So it’s already been hacked to pieces, DDoSed, etc. We’ve already been through all that.&#8221;</p>\n<p>When the team first started Poopy.life as an internal project for WP All Import, they had a difficult time trying to host it on a VPS with the requirement of isolating installs from each other without any professional systems administrators on board.</p>\n<p>&#8220;We were getting hacked all the time, so we started using CloudLinux, the same software that a lot webhosts use for their shared hosting servers,&#8221; Guilmette said. &#8220;This also prevents resource hogging, where someone could start mining bitcoin and then everyone’s installs would take forever to load.</p>\n<p>&#8220;Then came the spammers, using their installs to send out email spam. So we learned we had to discard e-mail silently while allowing scripts that expect e-mail to be available to still function correctly.</p>\n<p>&#8220;Once we went on that whole journey, it was kind of a no-brainer to share this tool with everyone else. We’ve been through a lot of pain in building this platform, and in opening this up to the public we hope we can help others avoid those same issues.&#8221;</p>\n<p>The team now has two systems administrators on call 24/7 to get the service back up and running quickly if anything breaks.</p>\n<h3>WP Sandbox Service is Aimed at Theme and Plugin Developers</h3>\n<p>In the past six months since opening Poopy.life to the public, Guilmette&#8217;s team has learned several valuable lessons in how to market the commercial service.</p>\n<p>&#8220;We use the Sandbox for so many different things, so the in the beginning the temptation was to kind of market it to everyone who we thought would find it useful,&#8221; Guilmette he said. &#8220;We didn’t find a whole lot of success, and are now focusing on plugin and theme developers. It’s helped us so much for WP All Import and Oxygen &#8211; everything from increasing sales to making tech support much easier by giving users isolated places they can reproduce problems. We know plugin and theme developers need this tool, so it makes the most sense for us to focus our marketing directly at them.&#8221;</p>\n<p>Having a way to allow users to try a product like Oxygen before purchasing will be particularly useful in the Gutenberg era, where many users are unsure about the differences between what core will offer and what a site building product can bring to the table. Guilmette and his team are optimistic about what Gutenberg will bring to the customization experience.</p>\n<p>&#8220;We can’t wait for it to ship in core,&#8221; Guilmette said. &#8220;I think a lot of the negativity about Gutenberg is from folks who make page builders and view it as competition. But Oxygen is a site builder, not a page builder (i.e. you design headers, footers, etc.). We don’t see Oxygen as competition; we think it will enhance the Oxygen experience. We think Gutenberg is great, and are excited to see some other talented teams out there working hard to make WordPress easier to use for everyone.&#8221;</p>\n<p>He said his team is hoping to provide a Gutenberg component that users can drop into Oxygen and then edit that area of the site with Gutenberg. Having a sandboxed version of this available for users to test will help them to understand how the product works before purchasing.</p>\n<p>Regardless of whether or not WP Sandbox takes off with other WordPress product companies, WP All Import and Oxygen have benefited from bringing sandboxing to the sales experience and continue to make use of the architecture the team has developed.</p>\n<p>&#8220;We generally avoid big, coordinated releases,&#8221; Guilmette said. &#8220;We prefer to slowly build a product around a group of slowly growing users. If you release a finished product to the world, chances are you spent too much money making something no one wants.</p>\n<p>&#8220;It hasn’t paid for itself yet, but that’s to be expected. We have enough users to make us optimistic, and some very exciting customers in the onboarding process. Once we get a few big names using it and other plugin developers realize the benefits of using it, we think it will take off.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Oct 2017 19:17:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: WooConf 2017 Livestream Tickets Now on Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/wooconf-2017-livestream-tickets-now-on-sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2445:\"<p>The third edition of <a href=\"https://wooconf.com/\" rel=\"noopener\" target=\"_blank\">WooConf</a> is being held in Seattle, Washington, October 19-20. This year the event is <a href=\"https://wptavern.com/seattle-to-host-wooconf-2017-in-october-conference-to-focus-on-developers\" rel=\"noopener\" target=\"_blank\">narrowing its focus to developers</a> and will feature eight workshops and more than 30 speakers. Topics include scaling, client relations, A/B testing, and enterprise e-commerce.</p>\n<p><a href=\"https://wordpress.org/plugins/woocommerce/\" rel=\"noopener\" target=\"_blank\">WooCommerce</a> is currently active on more than three million sites and the plugin has been downloaded 31 million times. Developers are using the plugin all over the world, but only a small fraction of them will be able to make it to Seattle for the conference. WooConf is less than two weeks away but in-person <a href=\"https://wooconf.com/#buy-a-ticket\" rel=\"noopener\" target=\"_blank\">tickets are still available</a> at $699 per attendee.</p>\n<p>A livestream of the conference is available for those who would like to attend but are unable to travel. <a href=\"https://wooconf.com/product/live-stream/\" rel=\"noopener\" target=\"_blank\">Livestream tickets</a> went on sale today for $50/each.</p>\n<p>&#8220;The in-person ticket prices, the live stream tickets, and the support of our sponsors are what funds the conference,&#8221; WooConf co-organizer Aviva Pinchas said. &#8220;For those who are not in a position to pay for the live stream tickets or attend the event in-person, the video recordings will be released later for free, and there are a number of other ways people can participate.&#8221;</p>\n<p>Pinchas said the team will be sharing updates on social media, the event&#8217;s blog, and in the WooCommerce Community Slack. They have also arranged with local WooCommerce meetup organizers to livestream parts of the event during free <a href=\"https://wooconf.com/meetups/\" rel=\"noopener\" target=\"_blank\">IRL meetups</a> in 12 major cities across the globe. These satellite events will include local speakers and offer attendees the opportunity to connect with other nearby WooCommerce developers and store owners.</p>\n<p>All of the recorded sessions will be published to the <a href=\"https://www.youtube.com/channel/UC63GQg3s2QcgOpMzsiF6wwQ\" rel=\"noopener\" target=\"_blank\">WooCommerce YouTube channel</a> sometime after the conclusion of the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Oct 2017 03:04:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: DonateWC Successfully Sponsors its First Applicant to WordCamp Cape Town\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/donatewc-successfully-sponsors-its-first-applicant-to-wordcamp-capetown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1656:\"<p><a href=\"https://donatewc.org/\">DonateWC</a> has <a href=\"https://donatewc.org/sponsorship-recipients/wordcamp-capetown-speaker-fundraiser/\">selected</a> and successfully sponsored its first applicant to <a href=\"https://2017.capetown.wordcamp.org/\">WordCamp Cape Town</a>. The recipient has chosen to remain anonymous although they are a speaker at the event.</p>\n<p>Funds left over from the <a href=\"https://donatewc.org/news/surprise-our-goal-is-fully-funded/\">initial crowdfunding campaign</a> and from the <a href=\"https://donatewc.org/make-a-donation/\">general donation pool</a> were used to cover expenses. The total cost of sponsorship is €669.24 with €197.37 coming from donations.</p>\n<p>In addition to sponsoring recipients, DonateWC is also publishing stories submitted by contributors on the benefits and impacts WordCamps have. <a href=\"https://twitter.com/arvindsinghdev\">Arvind Singh</a> published <a href=\"https://donatewc.org/wordcamp-stories/getting-to-wordcamp-udaipur/\">the first story</a> on DonateWC where he explains how his experience at <a href=\"https://2017.udaipur.wordcamp.org/\">WordCamp Udaipur</a> translated into WordPress meetups in <a href=\"https://2017.delhi.wordcamp.org/\">Delhi, India</a> and eventually, the first <a href=\"https://2017.delhi.wordcamp.org/\">WordCamp Delhi</a>.</p>\n<p>There&#8217;s no word yet on who will be the next recipient of a DonateWC sponsorship but the initiative still needs your help. If you believe in the cause, please consider making a <a href=\"https://donatewc.org/make-a-donation/\">donation.</a> The funds will be used to help others who are less fortunate attend WordCamps.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Oct 2017 23:33:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Gutenberg 1.3 Adds New Feedback Option for Plugin Testers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/gutenberg-1-3-adds-new-feedback-option-for-plugin-testers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3240:\"<p><a href=\"https://make.wordpress.org/core/2017/10/04/whats-new-in-gutenberg-4th-october/\" rel=\"noopener\" target=\"_blank\">Gutenberg 1.3</a> was released this week with many small tweaks and improvements to existing features. One of the most visible updates for those who are testing the Cover Image block is the addition of an <a href=\"https://github.com/WordPress/gutenberg/pull/2815\" rel=\"noopener\" target=\"_blank\">opacity slider</a>. It brings more flexibility to the feature than the previous on/off background dimming toggle provided. Users can now slide the opacity along a range snapped to percentages of 10.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/cover-image-block-opacity.gif?ssl=1\"><img /></a></p>\n<p>Version 1.3 also introduces an option to <a href=\"https://github.com/WordPress/gutenberg/pull/2807\" rel=\"noopener\" target=\"_blank\">convert a single block to an HTML block when Gutenberg detects conflicting content</a>. This is a precursor to an open issue that proposes <a href=\"https://github.com/WordPress/gutenberg/issues/2794\" rel=\"noopener\" target=\"_blank\">an HTML mode for blocks</a>, essentially a mechanism for each block to be edited as HTML. Contributors are still discussing the best approach for implementing the UI, which we will likely see in a future release.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-05-at-1.47.01-PM.png?ssl=1\"><img /></a></p>\n<p>Gutenberg 1.3 adds a new submenu item that ramps up the potential for gathering more feedback from people who are using the plugin. The Feedback link appears in the plugin&#8217;s sidebar menu and leads to a polldaddy form that separates users&#8217; comments into either either a feedback or support channel.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-05-at-2.03.23-PM.png?ssl=1\"><img /></a></p>\n<p>Instead of relying on testers to know where to go to offer feedback, the new link offers them an easily accessible avenue for sharing their thoughts and concerns. This option is especially helpful for those who are not as adept at using GitHub or writing meaningful bug reports. The forms guide the user to report important details of their setup, browser information, screenshots, and other useful information.</p>\n<p>Gutenberg does not track any information about users who submit feedback via the Polldaddy forms and there is nothing to indicate that the responses will be made public. It is unrealistic to expect that the Gutenberg team will be able to respond to each submission individually, but it would be helpful if they provided summaries of trends in user feedback and how it is informing the design and development of the project. This could go a long way to prevent users from perceiving that their concerns are being buried.</p>\n<p>Version 1.3 also adds expandable panels to the block inspector, support for pasting plain text markdown content (and converting it to blocks), and accessibility improvements to the color palette component. Check out the full <a href=\"https://make.wordpress.org/core/2017/10/04/whats-new-in-gutenberg-4th-october/\" rel=\"noopener\" target=\"_blank\">changelog</a> for more details.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Oct 2017 22:01:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: WPWeekly Episode 290 – Putting The Rad in Brad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=75361&preview=true&preview_id=75361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/wpweekly-episode-290-putting-the-rad-in-brad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2823:\"<p>In this episode, I&#8217;m joined by special guest co-host Brad Williams, Co-Founder and CEO of the website design and development agency <a href=\"https://webdevstudios.com/\">WebDevStudios</a>. Brad shared his experience at CampPress and is looking forward to attending the event again in 2018.</p>\n<p>We discussed the recent move to moderate all comments on the Tavern again. We covered the news of the week and near the end of the show, Brad describes why his company gives back to WordPress by participating in the <a href=\"https://ma.tt/2014/09/five-for-the-future/\">Five for the Future</a> initiative.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/camp-press-a-detox-from-digital-life\">Camp Press – A Detox from Digital Life</a><br />\n<a href=\"https://yoast.com/gutenberg-alternative-approach/\">Yoast Publishes an Alternative to Gutenberg While Raising Concerns About its Development. </a><br />\n<a href=\"https://wptavern.com/new-wp-cli-project-aims-to-extend-checksum-verification-to-plugins-and-themes\">New WP-CLI Project Aims to Extend Checksum Verification to Plugins and Themes</a><br />\n<a href=\"https://wptavern.com/regenerate-thumbnails-plugin-passes-5-million-downloads-rewrite-in-the-works\">Regenerate Thumbnails Plugin Passes 5 Million Downloads, Rewrite in the Works</a><br />\n<a href=\"https://wptavern.com/drupal-core-maintainers-propose-adopting-react-for-administrative-uis\">Drupal Core Maintainers Propose Adopting React for Administrative UI’s</a><br />\n<a href=\"https://wpcampus.org/conferences/apply-to-host/\">WPCampus 2018 is Taking Submissions From Host Cities</a><br />\n<a href=\"https://jetpack.com/2017/10/03/jetpack-5-4-date-picker-contact-form/\">Jetpack 5.4 Released </a></p>\n<h2>Picks of the Week:</h2>\n<p>If you have any WordPress related questions, consider asking them during the <a href=\"https://maintainn.com/ask-maintainn-twitter-event-october-5/\">Ask Maintainn event</a> on October 5th using the #askMaintainn hashtag on Twitter. Jim Byrom, Director of Client Services, will answer the questions directly through the Maintainn Twitter account.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, October 11th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #290:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Oct 2017 07:21:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Dev Blog: WordPress 4.9 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9104:\"<p>WordPress 4.9 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.9, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.9-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.9 is slated for release on <a href=\"https://make.wordpress.org/core/4-9/\">November 14</a>, but we need your help to get there. We’ve been working on making it even easier to customize your site. Here are some of the bigger items to test and help us find as many bugs as possible in the coming weeks:</p>\n<ul>\n<li>Drafting (<a href=\"https://core.trac.wordpress.org/ticket/39896\">#39896</a>) and scheduling (<a href=\"https://core.trac.wordpress.org/ticket/28721\">#28721</a>) of changes in the Customizer. Once you save or schedule a changeset, when any user comes into the Customizer the pending changes will be autoloaded. A button is provided to discard changes to restore the Customizer to the last published state. (This is a new “linear” mode for changesets, as opposed to “branching” mode which can be enabled by filter so that every time  user opens the Customizer a new blank changeset will be started.)</li>\n<li>Addition of a frontend preview link to the Customizer to allow changes to be browsed on the frontend, even without a user being logged in (<a href=\"https://core.trac.wordpress.org/ticket/39896\">#39896</a>).</li>\n<li>Addition of autosave revisions in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/39275\">#39275</a>).</li>\n<li>A brand new theme browsing experience in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/37661\">#37661</a>).</li>\n<li>Gallery widget (<a href=\"https://core.trac.wordpress.org/ticket/41914\">#41914</a>), following the media and image widgets introduced in 4.8.</li>\n<li>Support for shortcodes in Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/10457\">#10457</a>).</li>\n<li>Support for adding media to Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/40854\">#40854</a>).</li>\n<li>Support for adding oEmbeds outside post content, including Text widgets (<a href=\"https://core.trac.wordpress.org/ticket/34115\">#34115</a>).</li>\n<li>Support for videos from providers other than YouTube and Vimeo in the Video widget (<a href=\"https://core.trac.wordpress.org/ticket/42039\">#42039</a>)</li>\n<li>Improve the flow for creating new menus in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/40104\">#40104</a>).</li>\n<li>Educated guess mapping of nav menus and widgets when switching themes (<a href=\"https://core.trac.wordpress.org/ticket/39692\">#39692</a>).</li>\n<li>Plugins: Introduce singular capabilities for activating and deactivating individual plugins (<a href=\"https://core.trac.wordpress.org/ticket/38652\">#38652</a>).</li>\n<li>Sandbox PHP file edits in both plugins and themes, without auto-deactivation when an error occurs; a PHP edit that introduces a fatal error is rolled back with an opportunity then for the user to fix the error and attempt to re-save. (<a href=\"https://core.trac.wordpress.org/ticket/21622\">#21622</a>).</li>\n<li>Addition of dirty state for widgets on the admin screen, indicating when a widget has been successfully saved and showing an “Are you sure?” dialog when attempting to leave without saving changes. (<a href=\"https://core.trac.wordpress.org/ticket/23120\">#23120</a>, <a href=\"https://core.trac.wordpress.org/ticket/41610\">#41610</a>)</li>\n</ul>\n<p>As always, there have been exciting changes for developers to explore as well, such as:</p>\n<ul>\n<li>CodeMirror editor added to theme/plugin editor, Custom CSS in Customizer, and Custom HTML widgets. Integration includes support for linters to catch errors before you attempt to save. Includes new APIs for plugins to instantiate editors. (<a href=\"https://core.trac.wordpress.org/ticket/12423\">#12423</a>)</li>\n<li>Introduction of an extensible code editor control for adding instances of CodeMirror to the Customizer. (<a href=\"https://core.trac.wordpress.org/ticket/41897\">#41897</a>)</li>\n<li>Addition of global notifications area (<a href=\"https://core.trac.wordpress.org/ticket/35210\">#35210</a>), panel and section notifications (<a href=\"https://core.trac.wordpress.org/ticket/38794\">#38794</a>), and a notification overlay that takes over the entire screen in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/37727\">#37727</a>).</li>\n<li>A date/time control in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/42022\">#42022</a>).</li>\n<li>Improve usability of Customize JS API (<a href=\"https://core.trac.wordpress.org/ticket/42083\">#42083</a>, <a href=\"https://core.trac.wordpress.org/ticket/37964\">#37964</a>, <a href=\"https://core.trac.wordpress.org/ticket/36167\">#36167</a>).</li>\n<li>Introduction of control templates for base controls (<a href=\"https://core.trac.wordpress.org/ticket/30738\">#30738</a>).</li>\n<li>Use WP_Term_Query when transforming tax queries (<a href=\"https://core.trac.wordpress.org/ticket/37038\">#37038</a>).</li>\n<li>Database: Add support for MySQL servers connecting to IPv6 hosts (<a href=\"https://core.trac.wordpress.org/ticket/41722\">#41722</a>).</li>\n<li>Emoji: Bring Twemoji compatibility to PHP (<a href=\"https://core.trac.wordpress.org/ticket/35293\">#35293</a>). Test for any weirdness with emoji in RSS feeds or emails.</li>\n<li>I18N: Introduce the Plural_Forms class (<a href=\"https://core.trac.wordpress.org/ticket/41562\">#41562</a>).</li>\n<li>Media: Upgrade MediaElement.js to 4.2.5-74e01a40 (<a href=\"https://core.trac.wordpress.org/ticket/39686\">#39686</a>).</li>\n<li>Media: Use max-width for default captions (<a href=\"https://core.trac.wordpress.org/ticket/33981\">#33981</a>). We will want to make sure this doesn’t cause unexpected visual regressions in existing themes, default themes were all fine in testing.</li>\n<li>Media: Reduce duplicated custom header crops in the Customizer (<a href=\"https://core.trac.wordpress.org/ticket/21819\">#21819</a>).</li>\n<li>Media: Store video creation date in meta (<a href=\"https://core.trac.wordpress.org/ticket/35218\">#35218</a>). Please help test different kinds of videos.</li>\n<li>Multisite: Introduce get_site_by() (<a href=\"https://core.trac.wordpress.org/ticket/40180\">#40180</a>).</li>\n<li>Multisite: Improve get_blog_details() by using get_site_by() (<a href=\"https://core.trac.wordpress.org/ticket/40228\">#40228</a>).</li>\n<li>Multisite: Improve initializing available roles when switch sites (<a href=\"https://core.trac.wordpress.org/ticket/38645\">#38645</a>).</li>\n<li>Multisite: Initialize a user&#8217;s roles correctly when setting them up for a different site (<a href=\"https://core.trac.wordpress.org/ticket/36961\">#36961</a>).</li>\n<li>REST API: Support registering complex data structures for settings and meta</li>\n<li>REST API: Support for objects in schema validation and sanitization (<a href=\"https://core.trac.wordpress.org/ticket/38583\">#38583</a>)</li>\n<li>Role/Capability: Introduce capabilities dedicated to installing and updating language files (<a href=\"https://core.trac.wordpress.org/ticket/39677\">#39677</a>).</li>\n<li>Remove SWFUpload (<a href=\"https://core.trac.wordpress.org/ticket/41752\">#41752</a>).</li>\n<li>Users: Require a confirmation link in an email to be clicked when a user attempts to change their email address (<a href=\"https://core.trac.wordpress.org/ticket/16470\">#16470</a>).</li>\n<li>Core and the unit test suite is fully compatible with the upcoming release of PHP 7.2</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.9, <a href=\"https://make.wordpress.org/core/tag/4-9/\">check out posts tagged with 4.9 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.9&group=component&order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><b>If you think you’ve found a bug</b>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><i>Without your testing,<br />\nwe might hurt the internet.<br />\nPlease help us find bugs.<img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" /></i></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Oct 2017 05:54:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"WPTavern: Jetpack 5.4 Introduces Beta Version of New Search Module Powered by Elasticsearch for Professional Plan Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://wptavern.com/jetpack-5-4-introduces-beta-version-of-new-search-module-powered-by-elasticsearch-for-professional-plan-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4648:\"<p><a href=\"https://jetpack.com/2017/10/03/jetpack-5-4-date-picker-contact-form/\" rel=\"noopener\" target=\"_blank\">Jetpack 5.4</a> was released yesterday with many small enhancements to existing modules and an expansion of features for users on the paid plans. A new date picker field is available for the Contact Form, allowing administrators to request additional information such as project timelines, event reservations, or any other date-related data.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-04-at-2.43.45-PM.png?ssl=1\"><img /></a></p>\n<p>This release also fixes a bug with Jetpack&#8217;s Comments module where the form had whitespace beneath it when displayed in some themes. It now has a set default height, which will expand automatically as commenters are typing.</p>\n<p>A few other other improvements for all Jetpack users include the ability for third-party plugin and theme authors to add new menu items to the WordPress.com toolbar, connection process updated to allow for more users, improved display of Facebook embeds, and a better migration process for Widget Visibility rules when switching to the new WordPress Image Widget. Check out the full list of changes in the plugin&#8217;s <a href=\"https://wordpress.org/plugins/jetpack/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a>.</p>\n<h3>New Features for Jetpack Personal, Premium, and Professional Plans: Welcome Screens and Search Module in Beta</h3>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/personal-plan.png?ssl=1\"><img /></a>Jetpack 5.4 adds a new welcome screen for users who upgrade to a paid plan, highlighting some of the additional features included.</p>\n<p>The plugin will soon be introducing a new <a href=\"https://jetpack.com/support/search/\" rel=\"noopener\" target=\"_blank\">Jetpack Search</a> module for users on its <a href=\"https://jetpack.com/install/professional/\" rel=\"noopener\" target=\"_blank\">Professional plan</a>, the top tier that caters to those who need more business and marketing tools. Version 5.4 adds the architecture for the feature, which is powered by Elasticsearch and runs in the WordPress.com cloud. Users who want to participate in the beta can enable the feature at Settings > Traffic on WordPress.com and then add the new Search widget within wp-admin.</p>\n<p>WordPress&#8217; native search function is notoriously slow and often provides poor and inadequate results for sites with large amounts of content. Jetpack&#8217;s new Search module aims to deliver faster, more relevant results using the same powerful infrastructure that runs Jetpack Related Posts and the search on hundreds of WordPress.com VIP sites. In July 2017, WordPress.com&#8217;s <a href=\"https://data.blog/2017/07/11/real-time-elasticsearch-indexing-on-wordpress-com/\" rel=\"noopener\" target=\"_blank\">data.blog</a> reported that its network averages 23 million actions per day that trigger indexing of 75 million Elasticsearch documents into hundreds of indices.</p>\n<p>Jetpack Search boasts a zero configuration setup, real-time indexing (WordPress.com&#8217;s VIP indices have a one-second refresh rate), and the flexibility for developers to create custom Elasticsearch queries.</p>\n<p>The Jetpack Professional plan&#8217;s $299/year price point is highly competitive for access to a hosted Elasticsearch engine. Ordinarily, developers looking for the most economical way to implement Elasticsearch on a WordPress site will have to host and manage their own instances on Amazon AWS or other cloud services. This often comes with more ongoing maintenance and setup.</p>\n<p>Most managed WordPress hosts do not have a hosted Elasticsearch solution built into their plans. Earlier this year 10up launched <a href=\"http://ElasticPress.io\" rel=\"noopener\" target=\"_blank\">ElasticPress.io</a> to fill this need for for enterprise clients. The service starts at $299/month for up to 20GB of storage and unlimited Elasticsearch bandwidth and goes up to $999/month for more resources. WordPress.com VIP also offers Elasticsearch for their customers on plans ranging from $5,000 – $25,000 per month. Access to WordPress.com&#8217;s Elasticsearch infrastructure is arguably the highest value addition to Jetpack&#8217;s commercial plans to date.</p>\n<p>The Jetpack team is still working on the documentation for the new Search feature and has not published the specifics of the Elasticsearch resources and limits for Jetpack Professional subscribers. More information should be available once the feature is out of beta but current customers can test it after updating to Jetpack 5.4.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Oct 2017 23:17:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Consciousness of Matter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://ma.tt/2017/10/consciousness-of-matter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:242:\"<p>Nautilus Magazine has <a href=\"http://nautil.us/issue/47/consciousness/is-matter-conscious\">an interesting look at the question of Is Matter Conscious</a>? Worth reading to learn what the word \"panpsychism\" means. Hat tip: John Vechey.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Oct 2017 22:22:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"HeroPress: WordPress Research Behind The Scenes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://heropress.com/essays/wordpress-research-behind-scenes/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-research-behind-scenes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7994:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/10/100417-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I have met wonderful people from whom I have learned so much in the WordPress community.\" /><p>When I moved from Bogota (Colombia) to Paris I did a degree in translation and found myself, years later, working for one of the most important publishers specializing in research. But my dream since I left Colombia was to study Psychology. After about two years, I quit my job and went back to college. It was not an easy decision, but it never is, is it?</p>\n<p>My interest in starting this new career was to work in Clinical Psychology and Psychopathology. However, as far as I continued with my degree, I was finding subjects that put in doubt what I really wanted to work in the future. Health and Occupational Psychology was one of them.</p>\n<h3>Finding a Purpose</h3>\n<p>At that time I was still living in Paris with my husband, Andrés Cifuentes, a chemical engineer who ended up doing a master&#8217;s degree in web programming. Afterwards he became a WordPress enthusiast and nowadays he works within the WordPress ecosystem. Back then, while he spent his free time getting to know and learn more about WordPress (I didn’t know at that time that I was discovering WordPress too!) he listened to different podcasts and many of them addressed issues of the problems that remote workers had to face.</p>\n<blockquote><p>All of these people in the podcasts mentioned burnout as a result of their work and what they suffered for it. It was at that moment that I made the connection; I had found what I wanted to do.</p></blockquote>\n<p>The same day I started to investigate more about remote work and its impact on stress and burnout on the web (blogs, articles, essays).</p>\n<h3>Putting It Into Action</h3>\n<p>When time came to start my master I presented my project to my thesis director: I wanted to establish a relationship between remote work and burnout. Although he accepted my first subject of study, there was a long path waiting before establishing and defining my research area.</p>\n<p>Getting into the first steps of the research, I started an arduous research work of the literature review on remote work, which turned out being quite frustrating, as I could not find any scientific paper for my study on the subject. The only helpful information I could find was the research that had been done on telework, which was the closest type to remote work although it was not good enough.</p>\n<p>On the other hand, as a requirement for the master, I had to find an internship in a company, so I spent hours and hours writing cover letters and applying to boring internship offers which practically wanted the interns to make coffee. Nice!</p>\n<p>Fortunately, my husband had the wonderful idea for me to apply to companies working with WordPress. Since those companies are mostly 100% remote, this would help with my research along with having personal experience on remote work myself.</p>\n<blockquote><p>Lucky me! I had the great opportunity to do my internship in Human Made.</p></blockquote>\n<p>My proposal was to do a psychosocial risk assessment in the company that would also serve for my study. They were very kind to me and welcomed me warmly. No doubt they are a great company, Tom Wilmot truly cares for the wellbeing of his Humans and among themselves they help each other a lot, which for me is the basis of the success of the company&#8217;s growth. I really hope they have learned as much as I did.</p>\n<h3>Narrowing Focus</h3>\n<p>For several months I delivered to my thesis director about 8 different projects that I had find interesting to work on the remote work (stress, social support, culture differences, coping strategies, communication, isolation, identity…) all of them without success. My director disapproved each one of them as remote work in general is too extensive and scattered for a master thesis and I had to focus on a smaller group.</p>\n<blockquote><p>As I was doing my internship at Human Made, I thought it was a good idea to focus my study on the same subject but only within the WordPress community.</p></blockquote>\n<p>It was perfect since there have been no studies in this field in the WordPress community! Since WordPress project volunteers are the driving force behind the project, it has become particularly important to focus more on their psychological well-being.</p>\n<p>I sent the new thesis project about the role of motivation on burnout into the WordPress Community to my director and my research protocol was finally approved!</p>\n<h3>Studying The WordPress Community</h3>\n<p>WordPress is a community I&#8217;ve known for years thanks to my husband and I got closer to it with the time. My first contribution was to the Polyglots Team, he taught me how to start contributing and translating. He motivated me to give talks in WordCamps, something that I was very afraid of but I took it as an opportunity to share what I have learned about stress. I end up contributing with a couple of talks in WordCamp Sevilla and Barcelona about stress and remote work. Recently, I volunteered at past WordCamp Europe 2017.</p>\n<blockquote><p>I have met wonderful people from whom I have learned so much in the WordPress community, I never thought that I would ended up being part of this community myself!</p></blockquote>\n<p>So, in the end, for me it is more exciting to do my research on the WordPress community because I have a lot of affection for it. And there are so many more things to investigate!<br />\nMy purpose is to contribute with this ecosystem improving its well-being.</p>\n<p>For the moment, I am working on the survey data of my current research and I am looking forward to sharing the results with the WordPress community!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Research Behind The Scenes\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Research%20Behind%20The%20Scenes&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-research-behind-scenes%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Research Behind The Scenes\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-research-behind-scenes%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-research-behind-scenes%2F&title=WordPress+Research+Behind+The+Scenes\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Research Behind The Scenes\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-research-behind-scenes/&media=https://heropress.com/wp-content/uploads/2017/10/100417-min-150x150.jpg&description=WordPress Research Behind The Scenes\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Research Behind The Scenes\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-research-behind-scenes/\" title=\"WordPress Research Behind The Scenes\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-research-behind-scenes/\">WordPress Research Behind The Scenes</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Oct 2017 00:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Catalina Alvarez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Drupal Core Maintainers Propose Adopting React for Administrative UI’s\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/drupal-core-maintainers-propose-adopting-react-for-administrative-uis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6627:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/drupal_logo-blue.png?ssl=1\"><img /></a></p>\n<p>Both the Drupal and WordPress communities are now knee-deep in weighing JavaScript frameworks to modernize underlying architecture for building user interfaces in 2018 and beyond. Yesterday Drupal founder Dries Buytaert <a href=\"https://dri.es/drupal-looking-to-adopt-react\" rel=\"noopener\" target=\"_blank\">published a summary</a> of his discussions with core committers, framework managers, JavaScript subsystem maintainers, and JavaScript experts at DrupalCon Vienna. Together they concluded that Drupal should consider adopting React.</p>\n<p>&#8220;We agreed that today, React would be the most promising option given its expansive adoption by developers, its unopinionated and component-based nature, and its well-suitedness to building new Drupal interfaces in an incremental way,&#8221; Buytaert said. &#8220;Today, I&#8217;m formally proposing that the Drupal community adopt React, after discussion and experimentation has taken place.&#8221;</p>\n<p>The <a href=\"https://www.drupal.org/node/2913321\" rel=\"noopener\" target=\"_blank\">proposal</a> is now available to the broader Drupal community and Buytaert&#8217;s recommendation during his keynote presentation in Vienna was to test and research how Drupal&#8217;s administrative UX could be improved by using a JavaScript framework.</p>\n<p>Two years ago Drupal explored adopting a JavaScript framework and at that time Buytaert was considering React, Ember, and Angular. Facebook&#8217;s patent clause in React&#8217;s licensing made him hesitant to want to pursue it for Drupal but the license has since been changed to MIT. The Drupal community was not eager to select a framework at that time and in response Buytaert opted to focus on improving <a href=\"https://dri.es/tag/web-services\" rel=\"noopener\" target=\"_blank\">Drupal&#8217;s web service APIs</a> instead.</p>\n<p>&#8220;By not committing to a specific framework, we are seeing Drupal developers explore a range of JavaScript frameworks and members of multiple JavaScript framework communities consuming Drupal&#8217;s web services,&#8221; Buytaert said. &#8220;I&#8217;ve seen Drupal 8 used as a content repository behind Angular, Ember, React, Vue, and other JavaScript frameworks.&#8221;</p>\n<p>Buytaert shared an illustration showing how he envisions Drupal &#8220;supporting a variety of JavaScript libraries on the user-facing front end while relying on a single shared framework as a standard across Drupal administrative interfaces.&#8221;</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/drupal-supporting-different-javascript-front-ends.jpg?ssl=1\"><img /></a></p>\n<p>This approach is similar to what WordPress&#8217; Gutenberg contributors are proposing with <a href=\"https://github.com/WordPress/gutenberg/pull/2463\" rel=\"noopener\" target=\"_blank\">framework-agnostic block interoperability</a> where core would adopt a framework internally but developers could extend the new editor (and other UIs) using any JS library they prefer. In addition to giving developers more flexibility, this approach also helps to protect the project from the effects of the rapid pace at which JavaScript frameworks and libraries are coming and going.</p>\n<p>&#8220;Several years later, we still don&#8217;t know what JavaScript framework will win, if any, and I&#8217;m willing to bet that waiting two more years won&#8217;t give us any more clarity,&#8221; Buytaert said. &#8220;JavaScript frameworks will continue to evolve and take new shapes. Picking a single one will always be difficult and to some degree &#8216;premature.&#8217; That said, I see React having the most momentum today.&#8221;</p>\n<p>The <a href=\"https://www.drupal.org/node/2913321\" rel=\"noopener\" target=\"_blank\">proposal</a> on Drupal.org, authored by Lauri Eskola, Dupal&#8217;s core framework manager who specializes in JavaScript, said contributors&#8217; discussions revealed &#8220;unanimous consensus&#8230;that React would be a good choice.&#8221; Eskola cited several benefits they believe React will bring to Drupal, including its large ecosystem of libraries, active developer community, project maturity, and improved career options for classical Drupal developers. WordPress.com, TYPO3, The New York Times, Airbnb, and others using React were also listed among React&#8217;s benefits.</p>\n<p>The discussion on the <a href=\"https://www.drupal.org/node/2913321\" rel=\"noopener\" target=\"_blank\">proposal</a> is an interesting read with many similarities to the recent discussions in the WordPress community regarding React. Several Drupal developers expressed concerns about how difficult it may be for those with a PHP background to learn React, as it adds more complexity to the development process.</p>\n<p>&#8220;Overall I&#8217;m in favor of a framework,&#8221; Drual developer Mark Miller <a href=\"https://www.drupal.org/node/2913321#comment-12283495\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;However, a big question for me is how many PHP developers are going to easily pick up React? I know we want to bring in more Javascript developers, but it seems that most people creating modules and using this will be coming from a PHP background. I know pure JavaScript people love React, but it will likely be a steep curve to others in Drupal&#8217;s already steep learning curve.&#8221;</p>\n<p>Others, who had previously become disillusioned by a perception of Drupal being unable to keep up with modern web development, welcome the proposal to experiment with React. A few advocated for their frameworks of choice and said they would like to see the experimentation expanded to include other frameworks as well.</p>\n<p>&#8220;Is there an issue yet for the React prototype of the watchdog page?&#8221; Drupal core committer Angie Byron said. &#8220;When that&#8217;s created, folks interested in alternative frameworks (I&#8217;m hearing both &#8216;vanilla&#8217; web components and Vue.js come up a lot, both here and in the WP discussions) could start an alternate implementation in a duplicate issue and we could compare/contrast, which would be very helpful in my opinion.&#8221;</p>\n<p>Drupal is aiming to have enough real-world testing done to make a final decision before the upcoming 8.6.0 development period slated for the first part of 2018. Buytaert said that after deciding on a framework, Drupal&#8217;s leadership plans to begin adoption in a limited and incremental way &#8220;so that the decision is easily reversible if better approaches come later on.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Oct 2017 23:04:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Regenerate Thumbnails Plugin Passes 5 Million Downloads, Rewrite in the Works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/regenerate-thumbnails-plugin-passes-5-million-downloads-rewrite-in-the-works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4603:\"<p><a href=\"https://wordpress.org/plugins/regenerate-thumbnails/\" rel=\"noopener\" target=\"_blank\">Regenerate Thumbnails</a>, written by prolific plugin developer <a href=\"https://alex.blog/\" rel=\"noopener\" target=\"_blank\">Alex Mills</a>, has passed 5 million downloads. The plugin was first released nearly a decade ago in August 2008 during the days of WordPress 2.6. Regenerate Thumbnails is used to retroactively generate new thumbnail sizes for past uploads. It has become an indispensable utility over the years, helping millions of users successfully transition between WordPress themes that have different featured image sizes.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/regenerate-thumbnails-v-1.png?ssl=1\"><img /></a>Regenerate Thumbnails version 1.0.0\n<p>&#8220;I was freelancing at the time and according to an ancient post on my blog, I apparently wrote it as a client needed the functionality,&#8221; Mills said. &#8220;I don&#8217;t remember that though and I certainly never figured it&#8217;d be installed and activated on over a million sites like it is today!&#8221;</p>\n<p>Regenerate Thumbnails is downloaded thousands of times every day, and, fortunately, it is the type of plugin that doesn&#8217;t generate too many support issues. Mills said he is thankful for the many volunteers on the WordPress.org support forums who have also helped manage the load. Despite the continued and widespread use of the plugin, Mills has never considered cashing in on it.</p>\n<p>&#8220;I&#8217;d never monetize any of my plugins,&#8221; he said. &#8220;I write them for fun not profit. It would be a conflict of interest anyway due to my employment at Automattic.&#8221;</p>\n<p>Regenerate Thumbnails is a fairly straightforward plugin that rarely requires updating, but this year Mills said he has tried to give it a lot more love and will soon be releasing a complete rewrite.</p>\n<p>&#8220;The rewrite is currently taking place on <a href=\"https://github.com/Viper007Bond/regenerate-thumbnails\" rel=\"noopener\" target=\"_blank\">GitHub</a> and is a complete rethink of the plugin, both in terms of the interface and underlying technologies,&#8221; Mills said. &#8220;The interface is powered by Vue.js, which I&#8217;m learning and using for the first time, and the WordPress REST API. I also have a full suite of unit tests for PHPUnit to verify that the plugin code is working as intended, both now and into the future. Those have been incredibly useful while writing the plugin and I highly recommend other plugin authors make use of them too. <a href=\"https://make.wordpress.org/cli/handbook/plugin-unit-tests/\" rel=\"noopener\" target=\"_blank\">WP-CLI makes it very easy to set up</a>.&#8221;</p>\n<p>After nine years of supporting Regenerate Thumbnails, and many other plugins, Mills said he doesn&#8217;t consider himself the best example when it comes to maintaining plugins. His advice to other developers is &#8220;try to make sure to write your plugins to be future-proof.&#8221;</p>\n<p>&#8220;Outside of some updates last month, the last real changes to the plugin were made in 2012!&#8221; Mills said. &#8220;I wrote the plugin well the first time around and it&#8217;s just worked mostly fine ever since because it uses built-in WordPress code to do the work.&#8221;</p>\n<p>This is the reason why Regenerate Thumbnails has already blazed past its major milestone at 5,762,713 downloads and is well on its way to 6 million before the end of the year. Users still find the plugin to work as reliably as it did in 2008.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Have loved this plugin for years, just used it to relaunch a website with 50000 images and 30 image sizes.</p>\n<p>&mdash; Scott Fennell (@scottfennell123) <a href=\"https://twitter.com/scottfennell123/status/896933624657756160?ref_src=twsrc%5Etfw\">August 14, 2017</a></p></blockquote>\n<p></p>\n<p>Mills said that making a plugin future proof is key if you write code all day for a living and then find it difficult to write more in the evenings and weekends for WordPress.org plugins. However, due to his current illness, he hasn&#8217;t worked in nearly a year since October 2016.</p>\n<p>&#8220;While I&#8217;m still battling the leukemia, I&#8217;m at least feeling better than I was at the beginning of the year so I&#8217;ve gotten the itch to code again,&#8221; Mills said. &#8220;Working on personal projects such as Regenerate Thumbnails has been a good way to brush off my coding skills in anticipation of returning to work. Plus it&#8217;s just fun to code again!&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Oct 2017 21:53:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: New WP-CLI Project Aims to Extend Checksum Verification to Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/new-wp-cli-project-aims-to-extend-checksum-verification-to-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3908:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/wp-cli-logo.png?ssl=1\"><img /></a></p>\n<p>The WP-CLI team is initiating a new project that <a href=\"https://make.wordpress.org/cli/2017/09/26/wordpress-plugin-and-theme-checksums-project-announcement/\" rel=\"noopener\" target=\"_blank\">aims to bring checksum verification to plugins and themes</a>. Checksums are a method of verifying the integrity of files. Three years ago, WP-CLI added the capability of verifying WordPress core checksums using the MD5 algorithm. This is a useful security feature that allows developers to easily see if any files have been modified or compromised.</p>\n<p>The core checksums are handled via WordPress&#8217; official API (https://api.wordpress.org/core/checksums/) and WP-CLI contributors are planning to extend this infrastructure to plugins and themes hosted on WordPress.org.</p>\n<p>&#8220;Having this kind of functionality for plugins and themes as well would be a huge security benefit,&#8221; WP-CLI co-maintainer Alain Schlesser said. &#8220;It would allow you to check the file integrity of an entire site, possibly in an automated fashion. However, there is no centralized way of retrieving the file checksums for plugins or themes yet, and the alternative of downloading the plugins and themes from the official servers first just to check against them is wasteful in terms of resources and bandwidth.&#8221;</p>\n<p>Contributors are currently exploring different options for implementation in a <a href=\"https://github.com/wp-cli/ideas/issues/6\" rel=\"noopener\" target=\"_blank\">discussion on GitHub</a>, inspired by an existing <a href=\"https://github.com/eriktorsner/wp-checksum\" rel=\"noopener\" target=\"_blank\">wp-checksum project</a> by Erik Torsner.</p>\n<p>&#8220;The simplest possible infrastructure to go with would be flat files (no database),&#8221; WP-CLI maintainer Daniel Bachhuber said. &#8220;I&#8217;ve chatted with the corresponding WordPress.org folks about hosting. If our middleware application can generate flat files served by some API, then it will be fine to sync those flat files to a WordPress.org server (with rsync or similar).&#8221;</p>\n<p>The team is considering building the API under a separate URL for testing and iteration and then incorporating it back into WordPress.org&#8217;s infrastructure once it is ready. However, the sheer size of the SVN checkouts and the CPU required to sync the files makes it an interesting challenge. DreamHost has volunteered a server for the team to run its checksum generator on while the infrastructure is being developed.</p>\n<p>Torsner&#8217;s WP-CLI subcommand to verify checksums for themes and plugins currently only works with those hosted on WordPress.org, but he is also experimenting with mechanisms for getting checksums from some commercial vendors, including Gravity Forms and Easy Digital Downloads. He said he hopes the project would be capable of keeping these capabilities for commercial plugins after it is incorporated back into WordPress.org.</p>\n<p>The Plugin and Themes Checksums project is currently in the initiation stage and will have an official kickofff during the next WP-CLI meeting on <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?iso=20171003T1600\" rel=\"noopener\" target=\"_blank\">Tuesday, October 3, 2017, at 11:00 AM CDT</a>. Anyone who would like to volunteer is encouraged to attend, especially those with an interest in security, systems administration, and the technology required to get this project off the ground.</p>\n<p>&#8220;This project will have a huge impact on the perceived and effective security of WordPress installations,&#8221; Schlesser said. &#8220;It can greatly reduce the amount of malware-infested sites plaguing the internet, and through the substantial market share of WordPress, improve the general browsing experience for all net citizens.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Oct 2017 18:37:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Dev Blog: The Month in WordPress: September 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2017/10/the-month-in-wordpress-september-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5633:\"<p>This has been an interesting month for WordPress, as a bold move on the JavaScript front brought the WordPress project to the forefront of many discussions across the development world. There have also been some intriguing changes in the WordCamp program, so read on to learn more about the WordPress community during the month of September.</p>\n<hr />\n<h2>JavaScript Frameworks in WordPress</h2>\n<p>Early in the month, <a href=\"https://ma.tt/2017/09/on-react-and-wordpress/\">Matt Mullenweg announced</a> that WordPress will be switching away from React as the JavaScript library WordPress Core might use — this was in response to Facebook’s decision to keep a controversial patent clause in the library’s license, making many WordPress users uncomfortable.</p>\n<p>A few days later, <a href=\"https://ma.tt/2017/09/facebook-dropping-patent-clause/\">Facebook reverted the decision</a>, making React a viable option for WordPress once more. Still, the WordPress Core team is exploring a move <a href=\"https://github.com/WordPress/gutenberg/pull/2463\">to make WordPress framework-agnostic</a>, so that the framework being used could be replaced by any other framework without affecting the rest of the project.</p>\n<p>This is a bold move that will ultimately make WordPress core a lot more flexible, and will also protect it from potential license changes in the future.</p>\n<p>You can get involved in the JavaScript discussion by joining the #core-js channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">WordPress Core development blog</a>.</p>\n<h2>Community Initiative to Make WordCamps More Accessible</h2>\n<p>A WordPress community member, Ines van Essen, started a new nonprofit initiative to offer financial assistance to community members to attend WordCamps. <a href=\"https://donatewc.org/\">DonateWC</a> launched with a crowdsourced funding campaign to cover the costs of getting things up and running.</p>\n<p>Now that she’s raised the initial funds, Ines plans to set up a nonprofit organization and use donations from sponsors to help people all over the world attend and speak at WordCamps.</p>\n<p>If you would like to support the initiative, you can do so by <a href=\"https://donatewc.org/make-a-donation/\">donating through their website</a>.</p>\n<h2>The WordCamp Incubator Program Returns</h2>\n<p>Following the success of <a href=\"https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/\">the first WordCamp Incubator Program</a>, the Community Team is <a href=\"https://make.wordpress.org/community/2017/09/27/wordcamp-incubator-program-v2-new-role-name/\">bringing the program back</a> to assist more underserved cities in kick-starting their WordPress communities.</p>\n<p>The program’s first phase aims to find community members who will volunteer to mentor, assist, and work alongside local leaders in the incubator communities — this is a time-intensive volunteer role that would need to be filled by experienced WordCamp organizers.</p>\n<p>If you would like to be a part of this valuable initiative, join the #community-team channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and follow the <a href=\"https://make.wordpress.org/community/\">Community Team blog</a> for updates.</p>\n<h2>WordPress 4.8.2 Security Release</h2>\n<p>On September 19, <a href=\"https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/\">WordPress 4.8.2 was released to the world</a> — this was a security release that fixed nine issues in WordPress Core, making the platform more stable and secure for everyone.</p>\n<p>To get involved in building WordPress Core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further Reading:</h2>\n<ul>\n<li>The WordPress Meetup program hit a significant milestone this month — there are now 500 meetup groups in <a href=\"https://www.meetup.com/pro/wordpress/\">the official chapter program</a>.</li>\n<li>The SWFUpload library <a href=\"https://make.wordpress.org/core/2017/09/07/removing-swfupload/\">will be removed from WordPress Core</a> in version 4.9, scheduled for release in mid-November.</li>\n<li>Matías Ventura put together some useful videos on <a href=\"https://make.wordpress.org/core/2017/08/31/gutenberg-themes/\">how theme developers can integrate Gutenberg into their work</a>.</li>\n<li><a href=\"http://applyfilters.fm/\"><i>Apply Filters</i></a>, the popular WordPress development podcast, will go on hiatus after the upcoming 83rd episode.</li>\n<li>The WordPress Plugin Directory <a href=\"https://make.wordpress.org/plugins/2017/09/04/plugin-support-reps/\">has added the ability</a> for plugin owners to assign plugin support representatives.</li>\n<li>After a couple of slower development weeks, <a href=\"https://make.wordpress.org/core/2017/09/27/whats-new-in-gutenberg-1-2-1/\">Gutenberg v1.2 is out</a> and it’s looking better than ever.</li>\n<li>The third <a href=\"https://wordpress.org/news/2017/09/global-wordpress-translation-day-3/\">Global WordPress Translation Day</a> took place this past weekend — keep an eye on <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> for updates.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Oct 2017 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Gutenberg 1.2 Adds Postmeta Support and Extended Settings Placeholder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/gutenberg-1-2-adds-postmeta-support-and-extended-settings-placeholder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5590:\"<p>WordPress contributors have not yet made a final decision on the JavaScript framework to adopt for core, but Gutenberg development continues on with <a href=\"https://make.wordpress.org/core/2017/09/27/whats-new-in-gutenberg-1-2-1/\" rel=\"noopener\" target=\"_blank\">version 1.2</a> released this week.</p>\n<p>The update provides a better experience <a href=\"https://github.com/WordPress/gutenberg/pull/2708\" rel=\"noopener\" target=\"_blank\">resolving block conflicts</a> when switching between the &#8220;classic editor&#8221; and Gutenberg. Previously, if a user had created some paragraph blocks in Gutenberg but switched to the classic editor, the tags would get stripped out, making those blocks invalid when moving back to Gutenberg. Version 1.2 merges a pull request that detects whether the post contains blocks and then disables the wpautop behavior in the classic editor to prevent it from stripping the tags.</p>\n<p>This release also offers initial <a href=\"https://github.com/WordPress/gutenberg/pull/2740\" rel=\"noopener\" target=\"_blank\">support for postmeta</a> in block attributes. Gutenberg contributor Gary Pendergast tweeted <a href=\"https://gist.github.com/pento/19b35d621709042fc899e394a9387a54\" rel=\"noopener\" target=\"_blank\">an example plugin</a> for those who want to experiment with it.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Just between us, the new Gutenberg 1.2 release includes the first version of postmeta support! If you want to start experimenting with it, here\'s a sample plugin to get you going. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /><a href=\"https://t.co/O1GbKZ3xzt\">https://t.co/O1GbKZ3xzt</a></p>\n<p>&mdash; Gary (@GaryPendergast) <a href=\"https://twitter.com/GaryPendergast/status/913623415549976577?ref_src=twsrc%5Etfw\">September 29, 2017</a></p></blockquote>\n<p></p>\n<p>Another new item you&#8217;ll notice in version 1.2 is the addition of word and block counts to the table of contents. The value of knowing how many blocks are in play on the page or how many headings have been used is not immediately evident. It strikes me as a rather large and obtrusive display of non-essential information, which for some reason has been given priority placement at the top of the editor.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-29-at-10.36.02-PM.png?ssl=1\"><img /></a></p>\n<p>Gutenberg is getting ready to support metaboxes and this release adds a placeholder for the proposed Extended Settings panel. The <a href=\"https://github.com/WordPress/gutenberg/pull/2800\" rel=\"noopener\" target=\"_blank\">metabox placeholder shell</a> currently sits beneath the content with a &#8220;coming soon&#8221; message.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-29-at-10.56.48-PM.png?ssl=1\"><img /></a></p>\n<p>Developer Ross Wintle <a href=\"https://github.com/WordPress/gutenberg/pull/2800#issuecomment-332573684\" rel=\"noopener\" target=\"_blank\">commented</a> on the pull request with a few concerns about the naming and placement of this panel with notes on how it might impact interfaces that have required meta fields:</p>\n<blockquote><p>\na) Meta boxes currently have several places that they can live: in the sidebar, below post content with different priorities and contexts<br />\nb) I also have cases where I&#8217;ve improved the editing experience for my users by having meta boxes above or below the title because this fits with their content editing flow.<br />\nc) I really don&#8217;t like the &#8220;Extended settings&#8221; title. For some editing workflows the information in meta boxes is actually critical, core content/settings, not something optional/added-on/extended. Is this editable? Can developers add additional sections of their own like this?</p></blockquote>\n<p>Gutenberg engineer Riad Benguella acknowledged these concerns as legitimate and said the team is still exploring different options for the panel.</p>\n<p>&#8220;For the first iteration, we&#8217;ll probably keep the collapsed state but have multiple areas,&#8221; Benguella said. &#8220;There are some good design proposals dropping the expanding area (for the content area) and replacing them with &#8220;separators,&#8221; which might be <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-312804592\" rel=\"noopener\" target=\"_blank\">good as a v2</a>.&#8221;</p>\n<p>It may have seemed like Gutenberg development has been on hold due to the delayed JavaScript framework decision, but development is still ongoing. It slowed over the past couple weeks while most of the project&#8217;s chief contributors were attending the Automattic GM.</p>\n<p>&#8220;The framework decision doesn’t affect most Gutenberg development work &#8211; because the framework is hidden behind a compatibility layer, the majority of development work (at least, the work that touches the UI) can talk to the compatibility layer,&#8221; contributor Gary Pendergast said.</p>\n<p>&#8220;There are also large areas of code that don’t need the framework at all. For example, adding <a href=\"https://github.com/WordPress/gutenberg/pull/2740\" rel=\"noopener\" target=\"_blank\">postmeta support</a> was just about writing the glue between the Block API and the REST API.&#8221;</p>\n<p>Pendergast said that even once a JavaScript framework decision is made, Gutenberg will only require one or two developers to work on the necessary changes, but all other contributors will be able to continue on without any issues.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Sep 2017 04:21:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: DigitalOcean Partners with GitHub to Support Open Source Projects during Hacktoberfest October 1–31\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75163\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/digitalocean-partners-with-github-to-support-open-source-projects-during-hacktoberfest-october-1-31\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2705:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-29-at-12.29.22-PM.png?ssl=1\"><img /></a></p>\n<p>DigitalOcean is organizing its fourth annual <a href=\"https://hacktoberfest.digitalocean.com\" rel=\"noopener\" target=\"_blank\">Hacktoberfest</a> in partnership with GitHub. The event was created to support open source projects and participants can earn a free t-shirt by contributing four pull requests during the month of October.</p>\n<p>More than 29,000 people signed up for <a href=\"https://blog.digitalocean.com/open-source-at-its-hacktoberbest/\" rel=\"noopener\" target=\"_blank\">Hacktoberfest 2016</a> from 114 countries and 10,227 people completed the challenge. The event tracked a record-breaking 92,569 total PRs opened, up from 49,000 the previous year. Participants contributed to more than 29,000 repositories, spurring progress on thousands of open source projects and making maintainers very busing during the month of October.</p>\n<p>In preparation for the event, maintainers can add the &#8220;Hacktoberfest&#8221; label to issues in their GitHub projects that would be suitable for new contributors to work on. Participants can <a href=\"https://github.com/search?q=label:hacktoberfest+state:open+type:issue\" rel=\"noopener\" target=\"_blank\">browse all the &#8220;Hacktoberfest&#8221; issues</a> if they need some inspiration to get started.</p>\n<p>Both <a href=\"https://github.com/woocommerce/woocommerce/issues?q=is%3Aissue%20is%3Aopen%20label%3AHacktoberfest\" rel=\"noopener\" target=\"_blank\">WooCommerce</a> and <a href=\"https://github.com/WordPress/gutenberg/labels/Hacktoberfest\" rel=\"noopener\" target=\"_blank\">Gutenberg</a> plugin maintainers have already started applying the &#8220;Hacktoberfest&#8221; label to  issues to help WordPress developers find a good entry point for contributing.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-29-at-12.19.21-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://hacktoberfest.digitalocean.com/\" rel=\"noopener\" target=\"_blank\">Hacktoberfest</a> begins Sunday, October 1, but participants can sign up anytime between October 1 and October 31. All participants will receive limited-edition Hactoberfest stickers, even if you don&#8217;t complete the four pull requests. Those who complete the challenge before October 31st will be eligible to receive a shirt. Pull requests can be made in any public GitHub-hosted repository and are not limited to those with the Hacktoberfest label.</p>\n<p>Please leave a comment on this post if you have a WordPress-related plugin, theme, or project that has a few designated Hacktoberfest issues for new contributors.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Sep 2017 18:16:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: A Very Brief Introduction to Version Control and Git\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/a-very-brief-introduction-to-version-control-and-git\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3819:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/petersuhm.jpeg?ssl=1\"><img /></a>This post was contributed by guest author <a href=\"http://petersuhm.com/\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n&nbsp;</p>\n<hr />\n<p>Have you ever done this?</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/file-versions.png?ssl=1\"><img /></a></p>\n<p>Most of us have.</p>\n<p>Do you know what the technical term for it is? <em>Version control</em>. Your own, homemade, delicious implementation of version control!</p>\n<p>Okay, how about this?</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/commented-code.png?ssl=1\"><img /></a></p>\n<p>Version control right there!</p>\n<p>What I’m trying to show with these two examples is that all developers use some sort of version control. Some use Ctrl-z to roll back to a previous version, some use a zipped backup in a Dropbox folder and some use a dedicated version control system (VCS), such as Git. All the things we are trying to accomplish by backing up our files, commenting out old code and stashing it away in another “final-FINAL” zipball has been taken care of already. All we need to do is to embrace these VCS tools that we have available in our tool belt.</p>\n<p>Git is not complicated to use. It might seem difficult and overwhelming but in your day to day life you will probably use a maximum of 3-4 different commands. Learning how to use 3-4 commands to properly have version control of every single change ever made to your code base is a great deal compared to the “final-FINAL” approach.</p>\n<p>Here’s what version control looks like:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/version-control-intro.png?ssl=1\"><img /></a></p>\n<p>This is a screenshot of the <a href=\"https://github.com/WordPress/WordPress\" rel=\"noopener\" target=\"_blank\">WordPress Git mirror on GitHub</a>. Every time a change is made to the code base, it is recorded with Git and there is no need to copy the whole code base, throwing it into another folder, zipping it and naming it “final-FINAL-F-I-N-A-L”. If you dive into the WordPress code base on GitHub, you can find <a href=\"https://github.com/WordPress/WordPress/commit/23f1a9d2a4e9b484290f130e6c80e38e7fdcd453\" rel=\"noopener\" target=\"_blank\">commits dating back to 2003</a>, made by “someone” named saxmatt!</p>\n<p>Let’s dive into one of these commits, as they are called in Git:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/commit.png?ssl=1\"><img /></a></p>\n<p>This is the diff (Git jargon for difference between 2 commits) for the “class-wp-widget-text.php” file. The red line is being replaced with the green line below it. No need to comment it out to save it for eternity, like in that other example. Git will do that for us and we can forever and always refer back to this commit to see what was replaced and with what.</p>\n<p>Of course, the full WordPress code base is a large project with many collaborators. However, no project is too small to benefit from Git. Once you master those 3-4 commands, using Git in your day-to-day developer life becomes second nature, just like hitting Ctrl-s. It might not be obvious right now, but when you pull out an old project months or years later, having version control helps you catch up and gives you the confidence to change things without fearing disaster.</p>\n<p>So I challenge you to learn Git! Not necessarily deeply, just a little bit.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Sep 2017 22:31:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: WordCamp Incubator Program Gears Up for Round 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75159\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wordcamp-incubator-program-gears-up-for-round-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2791:\"<p>Last year the WordPress Community Team launched an experimental <a href=\"https://wptavern.com/wordpress-to-launch-experimental-wordcamp-incubator-program\" rel=\"noopener\" target=\"_blank\">WordCamp Incubator program</a> to bring WordCamps to new cities where meetups had not been very well established. After receiving 182 applications, organizers narrowed the selections to three cities with the most potential to foster an emerging WordPress community. Successful WordCamps were held in Denpasar, Harare, and Medellín. Six additional communities that applied to the program ended up organizing WordCamps as well with the help of community mentors.</p>\n<p>This week Andrea Middleton announced that the Community Team will be pursuing <a href=\"https://make.wordpress.org/community/2017/09/27/wordcamp-incubator-program-v2-new-role-name/\" rel=\"noopener\" target=\"_blank\">round two of the WordCamp Incubator program</a>. Given the rapid growth of the global WordPress community, Middleton said the greatest challenge to getting the program running again is finding people who can oversee the new WordCamps. The full-time sponsored volunteer staff from the previous year is already fully committed for 2018.</p>\n<p>&#8220;This is a time-intensive volunteer role,&#8221; Middleton said. &#8220;We estimate that lead organizers spend about 170 hours on a WordCamp, and I figure that the folks working to support the growth of an Incubator event need to dedicate about 200-250 hours over the planning cycle. The job is that of co-organizer, mentor, and ambassador — since it’s probable that no one you’re working with has ever actually attended a WordCamp.&#8221;</p>\n<p>Experience having organized WordCamps is a prerequisite for taking on the community advisor role. Middleton also emphasized the importance of sensitivity and experience collaborating with people from other cultures. She estimates the volunteer role is likely to require 25 hours per month. As this is almost a part-time job, the Community Team is looking at the possibility of having interested volunteers pitch their companies to sponsor some of their hours to work on the incubator program. They are also considering creating a team of incubator advisors to work together assisting multiple communities.</p>\n<p>The team is aiming to decide on a name for the advisor role and come up with a plan for recruiting volunteers by October 6. This will be followed by a call for communities that would like to be considered for the program and host their first WordCamp in 2018. Anyone interested in volunteering can jump in on the discussion on the <a href=\"https://make.wordpress.org/community/2017/09/27/wordcamp-incubator-program-v2-new-role-name/\" rel=\"noopener\" target=\"_blank\">make.wordpress.org/community</a> blog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Sep 2017 21:26:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WPWeekly Episode 289 – Where Did WordPress’ Ease of Use Go?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=75134&preview=true&preview_id=75134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wpweekly-episode-289-where-did-wordpress-ease-of-use-go\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3091:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"http://scottbolinger.com/\">Scott Bolinger</a>. Bolinger recently attended a Content and Commerce Summit where WordPress and WooCommerce were not mentioned. Bolinger <a href=\"http://scottbolinger.com/perspective-on-wordpress/\">shared the perspective</a> he gained from an attending the event and speaking with a friend who uses Shopify.</p>\n<p>We discuss what happened to WordPress&#8217; ease of use, which user segment the project is developed for, and how can it provide an end-to-end user experience that&#8217;s on par with SaaS offerings like SquareSpace or Wix. We also talk about the challenges associated with setting up a WordPress site after the installation process. Last but not least, we discuss why some people are not recommending WordPress to friends or family anymore.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/donatewc-reaches-fundraising-goal\">DonateWC Reaches Fundraising Goal</a><br />\n<a href=\"https://wptavern.com/wordcamp-for-publishers-videos-now-available-on-youtube\">WordCamp for Publishers Videos Now Available on YouTube</a><br />\n<a href=\"https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes\">Apply Filters Podcast to be Retired after 83 Episodes</a><br />\n<a href=\"https://wptavern.com/facebook-to-re-license-react-after-backlash-from-open-source-community\">Facebook to Re-license React after Backlash from Open Source Community</a><br />\n<a href=\"https://wptavern.com/wordpress-explores-a-javascript-framework-agnostic-approach-to-building-gutenberg-blocks\">WordPress Explores a JavaScript Framework-Agnostic Approach to Building Gutenberg Blocks</a><br />\n<a href=\"https://wptavern.com/si-captcha-anti-spam-plugin-permanently-removed-from-wordpress-og-due-to-spam-code\">SI CAPTCHA Anti-Spam Plugin Permanently Removed from WordPress.org Due to Spam Code</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://make.wordpress.org/plugins/2016/02/12/on-the-topic-of-selling-your-plugins/\">Otto shares tips and advice on selling plugins</a>.</p>\n<p><a href=\"https://en.wikipedia.org/wiki/Metroid:_Samus_Returns\">Metroid: Samus Returns</a> and Nintendo 3DS.</p>\n<p><a href=\"http://amyciavolino.com/assets/MindfulCommunicationInCodeReviews.pdf\">Mindful Communication in Code Reviews by Amy Ciavolino</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, October 4th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #289:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 22:37:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: WordPress.com Adds Google Photos Integration, Available Now for Jetpack-Enabled Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/wordpress-com-adds-google-photos-integration-available-now-for-jetpack-enabled-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3566:\"<p>WordPress.com now supports <a href=\"https://en.blog.wordpress.com/2017/09/26/upload-once-blog-anywhere-photos-from-google/\" rel=\"noopener\" target=\"_blank\">seamless integration between Google Photos and the WordPress media library</a>. Users can connect their Google accounts to have access to their photos when inserting an image.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-3.39.22-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.google.com/photos/\" rel=\"noopener\" target=\"_blank\">Google Photos</a> has gained popularity due to its automatic tagless organization and free, unlimited backup for photos and videos up to 16MP and 1080p HD. In May 2017, the service reported <a href=\"https://www.blog.google/products/photos/google-photos-500-million-new-sharing/\" rel=\"noopener\" target=\"_blank\">500 million monthly users</a> backing up more than 1.2 billion photos and videos per day.</p>\n<p>When inserting pictures on WordPress.com, users can also take advantage of Google&#8217;s smart image searching capabilities. The service is fairly good at recognizing what is in your images and where they were taken, even if you haven&#8217;t specifically categorized them or added descriptions.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-3.46.51-PM.png?ssl=1\"><img /></a></p>\n<p>The new Google Photos integration is also available for Jetpack-enabled sites when posting via the WordPress.com interface. (It is not available in wp-admin of self-hosted sites.) Unfortunately, this experience is still rather buggy. After adding photos, WordPress.com didn&#8217;t seem to be able to save drafts and it was also unable to display the most recent photos from the past week.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-27-at-1.44.52-PM-e1506544898526.png?ssl=1\"><img /></a></p>\n<p>Users should also note that when you authenticate with Google Photos, it will open access to the photos from every single site that you have connected to that particular WordPress.com account. This access is, however, is limited to the specific user who connected. Multiple users on a site will each need to authenticate separately and can connect their own Google accounts. The users do not have access to each other&#8217;s photos. It&#8217;s also easy to revoke access at <a href=\"https://wordpress.com/sharing/\" rel=\"noopener\" target=\"_blank\">wordpress.com/sharing</a>.</p>\n<p>The new Google Photos feature has been very well received by WordPress.com users, as it saves them the trouble of downloading images from the service and then uploading to their media libraries. It&#8217;s not quite as convenient for Jetpack-enabled sites, because it adds additional steps to the publishing process.</p>\n<p>&#8220;Excellent feature, but will it be available directly from self-hosted sites without using WordPress.com?&#8221; one user asked. &#8220;This cuts out so many steps in our publishing workflow, but then adds several more if we then need to login to WordPress.com to do this. Our admin setup is complex, so switching to editing here isn’t an option. I have multiple contributors who write directly and this would be a game changer if they could directly upload their images from their account.&#8221;</p>\n<p>A WordPress.com representative confirmed that there are currently no plans to support a standalone version in Jetpack. They are, however, looking at supporting other services, such as Flickr, in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 22:17:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WPTavern: Camp Press – A Detox from Digital Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wptavern.com/camp-press-a-detox-from-digital-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3381:\"<p>The following is a guest post by Brad Williams who shares his experience at <a href=\"https://camp.press/\">Camp Press</a> this past weekend. Brad is the Co-Founder and CEO of the website design and development agency <a href=\"https://webdevstudios.com\">WebDevStudios</a>.</p>\n<p>He is also a co-author of the Professional WordPress book series. Brad is a US Marine Corps veteran and has been developing websites for over 20 years, including the last 10 where he has focused on open-source technologies like WordPress.</p>\n<hr />\n<img />Brad Williams at Camp Press\n<p>I’ve been to a number of WordCamps and tech-related events over the years. They all follow a similar pattern of speakers, panels, sponsors, after-parties, etc. We’ve all been to these types of events and generally know what to expect; so when <a href=\"https://twitter.com/ifyouwillit?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\">Mendel Kurland</a> pitched the idea of <a href=\"https://camp.press/\">Camp Press</a> to me as &#8216;geeks camping,&#8217; I was intrigued.</p>\n<p>I went to Camp Press with no idea of what to expect. I honestly have never felt less prepared for an event as I did for this one. I like to plan. So, going to an event where I wasn’t 100% sure how it would work had me feeling nervous. What I soon realized is that I liked being pushed out of my &#8216;safety bubble.&#8217;</p>\n<p>The Camp Press location was absolutely amazing and truly helped make the event special. We stayed at a large summer camp style setup, about an hour outside of Oklahoma City called Fry Lake. If you aren’t familiar with Oklahoma, just imagine driving an hour from a large city to the middle of nowhere. Perfect.</p>\n<p>Fry Lake had cabins, shower and bathroom facilities, an amazing swimming lake with diving boards, and a full cafeteria kitchen. We were literally back at the type of summer camp we experienced as kids, and we immediately knew it.</p>\n<img />Camp Press Fire\n<p>As we learned more about each other, we quickly became more comfortable as a group. We shared stories, laughed, cooked, and debated topics from tech to TV shows. We discussed very personal struggles and experiences, some of which I would guess haven’t been shared outside of close family. We sang songs around the campfire, performed late-night improv, made s’mores, and enjoyed each other’s company.</p>\n<p>Even more amazing is that nothing was scripted. There was no agenda, set activities, presentations. It was just natural interaction. Over the course of a few days, we all grew closer to each other. There was an unspoken bond forming between everyone at Camp Press.</p>\n<p>I didn’t know what to expect going to <a href=\"https://camp.press/\">Camp Press</a>. What I promptly learned is that was the entire point of the event—doing the unexpected, pushing yourself outside of your comfort zone, making new friends, having fun and serious conversations, and doing all of this without the normal technology that is always around us.</p>\n<p>When is the last time you had a detox from digital life? My detox was last weekend, and I can’t wait to do it again!</p>\n<img />Camp Press Attendees\n<p>For more insight into Camp Press and to get Mendel&#8217;s perspective, check out the event&#8217;s <a href=\"https://camp.press/general/inaugural-camp-press-2017-huge-success/\">official blog post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 22:12:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Dev Blog: Global WordPress Translation Day 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2017/09/global-wordpress-translation-day-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3298:\"<p><span>On September 30 2017, the WordPress Polyglots Team &#8211; whose mission is to translate WordPress into as many languages as possible &#8211; will hold its third <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day</a>, a 24-hour, round-the-clock, digital and physical global marathon dedicated to the localisation and internationalisation of the WordPress platform and ecosystem, a structure that powers, today, over 28% of all existing websites.</span></p>\n<p><span>The localisation process allows for WordPress and for all WordPress-related products (themes and plugins) to be available in local languages, so to improve their accessibility and usage and to allow as many people as possible to take advantage of the free platform and services available.</span></p>\n<p><span>In a (not completely) serendipitous coincidence, September 30 has also been declared by the United Nations “International Translation Day”, to pay homage to the great services of translators everywhere, one that allows communication and exchange.</span></p>\n<p><span>The event will feature a series of multi-language live speeches (training sessions, tutorials, case histories, etc.) that will be screen-casted in streaming, starting from Australia and the Far East and ending in the Western parts of the United States.</span></p>\n<p><span>In that same 24-hour time frame, Polyglots worldwide will gather physically in local events, for dedicated training and translations sprints (and for some fun and socializing as well), while those unable to physically join their teams will do so remotely.</span></p>\n<p><span>A big, fun, useful and enlightening party and a lovely mix of growing, giving, learning and teaching, to empower, and cultivate, and shine.</span></p>\n<p><span>Here are some stats about the first two events:</span></p>\n<p><b>Global WordPress Translation Day 1</b></p>\n<ul>\n<li><span>   </span><span>448 translators worldwide</span></li>\n<li><span>   </span><span>50 local events worldwide</span></li>\n<li><span>   </span><span>54 locales involved</span></li>\n<li><span>   </span><span>40350 strings translated, in</span></li>\n<li><span>   </span><span>597 projects</span></li>\n</ul>\n<p><b>Global WordPress Translation Day 2</b></p>\n<ul>\n<li><span>   </span><span>780 translators worldwide</span></li>\n<li><span>   </span><span>67 local events worldwide</span></li>\n<li><span>   </span><span>133 locales involved</span></li>\n<li><span>   </span><span>60426 strings translated, in</span></li>\n<li><span>   </span><span>590 projects</span></li>\n</ul>\n<p><span>We would like your help in spreading this news and in reaching out to all four corners of the world to make the third #WPTranslationDay a truly amazing one and to help celebrate the unique and fundamental role that translators have in the Community but also in all aspects of life.</span></p>\n<p><span>A full press release is available, along with more information and visual assets at </span><a href=\"https://wptranslationday.org/press/\"><span>wptranslationday.org/press</span></a>.</p>\n<p><span>For any additional information please don’t hesitate to contact the event team on </span><a href=\"mailto:press@wptranslationday.org\"><span>press@wptranslationday.org</span></a><span>.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 11:56:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"HeroPress: Challenge Gladly Accepted\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://heropress.com/essays/challenge-gladly-accepted/#utm_source=rss&utm_medium=rss&utm_campaign=challenge-gladly-accepted\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8986:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/092717-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I could never have imagined that WordPress would become an important part of my life.\" /><p>I grew up in a suburb to Stockholm, where me and my brothers would wrestle over who was allowed to use our first PC. I think it was a pre-owned old beaten Compaq Deskpro 386. We only stopped arguing once we could sit down together and play Civ; one of us at the controls, the others giving advice on what moves to make.</p>\n<h3>Dipping Into The Web</h3>\n<p>I learnt HTML and built my first pages on Geocities and out of necessity: I needed a place to publish my angsty teenage poetry. But people didn’t come to my website for the bad poetry, instead they filled my guestbook with webdesign and HTML questions.</p>\n<p>I have built websites for myself and others since the mid 90’s and kept a few clients on the side while studying. At this time, there was not a lot of computer or programming classes available for high school students. It had been easy enough to learn HTML online by reading guides, message boards and similar. During one of my final semesters, my school announced a new class called “Computers for girls”. I signed up hoping to learn enough to assemble or upgrade my own PC. The class was a joke. Instead of teaching us about motherboards, memory or networks, our teacher showed us where to put the cords…</p>\n<p>He didn’t realise that most of us already spent every recess in the computer halls, chatting over IRC. In order to learn the basics of actual programming (not just HTML), I had to take adult education evening- and summer classes since my school didn’t offer any.</p>\n<h3>Derailed</h3>\n<p>After high school I did like many others of my generation: I fell in love with someone I had only met online, who lived on the other side of the world. All to the soundtrack of Savage Garden&#8217;s “I Knew I Loved You”.</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>It took all my savings and courage to travel back and forward between Sweden and the US, while studying from a distance.</p>\n<blockquote><p>When my boyfriend suddenly passed away in 2001 I had to make drastic changes in my life.</p></blockquote>\n<p>I was in the middle of moving, I couldn’t keep up with deadlines or deal with clients, and I was barely able to finish my project managing and programming classes. I had to forget all our plans, start over, and take a desk job instead.</p>\n<h3>Coming Back To The Web</h3>\n<p>Many years later one of my former clients asked if I had tried WordPress. It took me a few months to decide if I liked it or not, partially because I didn’t know PHP, and because I didn’t have great experiences from trying Joomla and Drupal.</p>\n<p>I did some customization work and eventually I submitted my first theme to WordPress.org. Of course my theme was a mess and did not even work as expected.</p>\n<blockquote><p>But I appreciated that someone took the time to look at my code and explain what I needed to do to fix it and where I could read more. It was very rare to receive such feedback.</p></blockquote>\n<p>I joined the Theme Review Team&#8217;s mailing list, listening in and learning. I started reviewing themes to learn more and to improve my own themes.</p>\n<p>For those who do not know what the Theme Review Team does, we test and review the code (every single file) of themes that are submitted to be included in the WordPress.org theme directory.</p>\n<h3>My Secret Power</h3>\n<p>Because I am on the autism spectrum, the structure and patterns of coding languages suits me well. I need both structure and a creative outlet in my life, and coding is therapy, much like a puzzle or a coloring book. I love my once dreaded desk job, because it gives me the opportunity to help people on a different scale than I ever could as a freelancer. Being a volunteer on WordPress.org lets me combine both worlds.</p>\n<p>I could never have imagined that WordPress would become an important part of my life, that I would spend this much time on it (sometimes up to 20 hours per week), or that I would be asked to be one of the team leads for the Theme Review Team in 2017.</p>\n<p>Today I honestly don’t know what I would do if I could no longer contribute to WordPress the way I know and am familiar with. It is an essential part of my everyday life.</p>\n<p>WordPress is also challenging because you can only do so much without interacting with others… And even though I find that difficult, I have had to learn that it is something I need as well.</p>\n<blockquote><p>I have to remind myself from time to time that here, I am allowed to be myself, with all my flaws, to contribute as much or as little as I choose, at my own pace.</p></blockquote>\n<p>And to be able to contribute and to help others, I also have to remind myself that people are not scary.</p>\n<h3>And Then WordCamp</h3>\n<p>I was a volunteer online for 6 years before I had the courage to go to my first WordCamp, which took place in my own home town. When I was finally there, I only spoke to 3 or 4 people. My second WordCamp went better, but the experience was still overwhelming.</p>\n<p>During my third WordCamp, which was WCEU 2017, I helped lead the Theme Review section of the contributor day, having to speak in front of 500 people.</p>\n<blockquote><p>The thing is, even when it overwhelms you, this community and its energy is addicting.</p></blockquote>\n<p>Everything changes once you go to your first meetup or WordCamp, meeting people who share your interest and passion. The community at large is open and welcoming, passionate, curious and caring. And it is trying to be a safe place for us all.</p>\n<h3>The Theme Review Team</h3>\n<p>There always seem to be a lot of opinions and even controversy surrounding the Theme Review Team. It is not always easy to handle the pressure and the amount of responsibility that is placed on you because so many people have a financial interest in WordPress themes. As a team lead or moderator, you often have to try to find the least bad solution to many different kind of situations.</p>\n<p>By the end of September, it is time for the current team leads to step back and welcome our next leads. I am looking forward to the break, but also to see what new ideas they will bring.<br />\nIt takes time to change a system that has been in place for this many years, and truthfully, sometimes it is painfully slow. It has proven difficult to find a system where themes without errors can be added to the directory quickly, and where reviewers can support authors who need extra help.</p>\n<p>This amazing team of volunteers has managed to reduce the queue time from 7 months down to 8-10 weeks. We still hope to be able to reduce it further, possibly by automating parts of the code review.</p>\n<p>Finally, the Theme Review Team is open to everyone and always looking for new volunteers.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Challenge Gladly Accepted\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Challenge%20Gladly%20Accepted&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fchallenge-gladly-accepted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Challenge Gladly Accepted\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fchallenge-gladly-accepted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fchallenge-gladly-accepted%2F&title=Challenge+Gladly+Accepted\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Challenge Gladly Accepted\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/challenge-gladly-accepted/&media=https://heropress.com/wp-content/uploads/2017/09/092717-150x150.jpg&description=Challenge Gladly Accepted\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Challenge Gladly Accepted\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/challenge-gladly-accepted/\" title=\"Challenge Gladly Accepted\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/challenge-gladly-accepted/\">Challenge Gladly Accepted</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Sep 2017 00:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Carolina Nymark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"WPTavern: WordPress Core JavaScript Framework Selection Discussion Continues with Input from Open Source Community Leaders\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://wptavern.com/wordpress-core-javascript-framework-selection-discussion-continues-with-input-from-open-source-community-leaders\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10632:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/09/javascript.jpg?ssl=1\"><img /></a></p>\n<p>WordPress&#8217; #core-js Slack channel hosted a lively and productive meeting this morning led by Andrew Duthie. The discussion focused less on specific framework comparisons and more on the role a framework will play in building JavaScript-powered interfaces for WordPress. Contributors were joined by core developers and leaders from the React and Vue communities, Chrome engineers, and other interested parties from outside the WordPress community.</p>\n<p>&#8220;This chat will focus largely on identifying requirements in building core features, overlap with plugin and theme authors, and patterns to reducing framework lock-in,&#8221; Duthie said. &#8220;Ideally this is higher-level than simply debating the merits of specific frameworks in a vacuum, and should be seen as an opportunity to collaborate between projects to set a path forward for WordPress which will provide flexibility and resiliency to future churn.&#8221;</p>\n<p>Duthie began by asking what role a framework should play in a WordPress developer&#8217;s workflow and also asked framework contributors to offer their perspectives on recommendations for extendable interfaces. This question provided attendees with the opportunity to weigh in on topics such as <a href=\"https://github.com/WordPress/gutenberg/pull/2791\" rel=\"noopener\" target=\"_blank\">support for web components</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/2463\" rel=\"noopener\" target=\"_blank\">framework-agnostic block interoperability</a> for Gutenberg, and how this might affect WordPress&#8217; plugin ecosystem.</p>\n<p>&#8220;I disagree a bit with the idea that whatever core (in this case Gutenberg) uses to power some of the intricacies of building a stateful app is going to be the de facto standard for plugin development,&#8221; Gutenberg engineer Matías Ventura said. &#8220;The actual framework here, in general terms, is going to be what WordPress exposes and the APIs.&#8221;</p>\n<p>With a framework-agnostic approach to building Gutenblocks, the library that core decides to build on doesn&#8217;t have to become the de facto standard for plugin developers but many outside the Gutenberg team believe that it will inevitably end up that way in practice. There are entire teams of engineers waiting on this decision that are committed to adopt whichever framework WordPress bets on.</p>\n<p>&#8220;To provide some perspective on how WP’s decision on a framework impacts developers downstream, I’m a developer at Boston University and our plan is to focus on whichever framework WP decides upon, even if Gutenberg has a completely agnostic API,&#8221; Adam Pieniazek said. &#8220;We’re primarily a WP shop (~ 1,000 site WP install powers most/a lot of our public web presence) and end up creating huge customizations on top of WP that often require diving into core to see what is actually happening in the background. I like Vue more than React personally, but if WP decides upon React, BU will focus on building expertise in React for when we need to peek/debug beyond the API. It doesn’t mean we won’t also use Vue but it won’t be our primary focus.&#8221;</p>\n<p>Pieniazek feedback echoes that of Gravity Forms co-founder Carl Hancock, who said his team is ready to adopt whatever library WordPress selects.</p>\n<p>“People are going to end up adopting whatever core uses for the most part despite the rainbows and butterflies some are claiming as it relates to creating an abstraction layer so plugin/theme developers can use whatever they want,” Hancock said in the #core-js channel earlier this week.</p>\n<p>Many participants from outside the WordPress community seemed to be in agreement with a framework-agnostic approach and none were eager to force a single framework on all developers working with WordPress. The remaining concern is how this works out practically and whether it puts developers in the confusing position of using a framework on top of a framework.</p>\n<p>&#8220;Since Gutenberg itself is going to become a platform to build for, the best level of separation is if the framework is used to build the core, but isn’t exposed as API to block builders,&#8221; AMP engineer Paul Bakaus said. &#8220;This gives one the choice to replace the underlying foundation whenever necessary.&#8221;</p>\n<p>Gutenberg engineer Riad Benguella summarized the approach the team has been discussing:</p>\n<blockquote><p>I think what we try to communicate is something like:</p>\n<p>&#8211; WordPress Core is going to use this X framework internally<br />\n &#8211; If you want to use it, we think it’s good<br />\n &#8211; If you want to use something else, you can just as easily as you’d use the Core’s chosen framework</p></blockquote>\n<p>Benguella also said that one of the goals for Gutenberg is &#8220;to set the basis for how we extend WordPress&#8217; UI in the future.&#8221; Once it ships, the team will likely set its sights on other parts of the wp-admin and build them in the same way.</p>\n<p>&#8220;If all parts of WP’s UI can be extended via a standard interface, whether it be a simple &#8216;data down, events up&#8217; API, or expecting a WC, I think this would cleanly separate the concerns of &#8216;what framework to use for core&#8217; vs. &#8216;what framework to use for extension development,\'&#8221; Vue.js creator Evan You said.</p>\n<p>When asked for his thoughts on on React becoming a primary framework for WordPress, React maintainer Dan Abromov was hesitant to advocate for WordPress adopting the library. His response underscored the necessity of having a framework-agnostic approach for extending Gutenberg and future WP interface overhauls.</p>\n<p>&#8220;I don&#8217;t really know WordPress well, so it&#8217;s hard for me to say whether it&#8217;s a great fit for the use case or not,&#8221; Abramov said. &#8220;Generally we use React for highly interactive UIs and find that it scales well with the app size. I&#8217;m also happy to answer technical questions about it. But I think in general people have strong opinions about, for example, templating vs expressiveness, and I don&#8217;t feel like forcing React upon everyone is the best way.&#8221;</p>\n<p>&#8220;I also feel the same way,&#8221; Evan You said. &#8220;Forcing a single framework on everyone, regardless of which one, is IMO not a good idea because it is bound to alienate the group of devs who are not into that framework, and imposes a bigger long term stability risk.&#8221;</p>\n<p>Abramov also said that people are already &#8220;very bitter and divisive&#8221; about the subject of selecting a framework. He also tweeted a similar sentiment prior to the meeting.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">When I read discussion threads (e.g. about WordPress) there’s a sense that people perceive every team as hostile to others. That’s false.</p>\n<p>&mdash; Dan Abramov (@dan_abramov) <a href=\"https://twitter.com/dan_abramov/status/912645022344007682\">September 26, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Think of it like tending a garden. You’re welcome to hang out at ours. Other gardens are great too <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>&mdash; Dan Abramov (@dan_abramov) <a href=\"https://twitter.com/dan_abramov/status/912653828977254401\">September 26, 2017</a></p></blockquote>\n<p></p>\n<p>&#8220;I believe it’s important (and technically feasible) to separate &#8216;which framework to use for core&#8217; and &#8216;which framework community devs use for extensions,\'&#8221; Evan You said.</p>\n<p>&#8220;Yes, I think there’s a goal here to be unopinionated for what we’re exposing to plugin authors, so long as the APIs/interfaces we do expose are sufficiently flexible (and easy) to build the UIs and interactions they need to implement,&#8221; Andrew Duthie said.</p>\n<p>The topic of <a href=\"https://github.com/WordPress/gutenberg/pull/2791\" rel=\"noopener\" target=\"_blank\">supporting web components interoperability for Gutenblocks</a> was also part of the discussion during the meeting.</p>\n<p>&#8220;While less powerful than most of the actual frameworks at this point, they are likely to become a W3C standard, ensuring that they will stick around and evolve,&#8221; Felix Arntz said. &#8220;Plus once browser support is fully there, there&#8217;s less functionality to implement by an actual framework built on top.&#8221;</p>\n<p>Polymer.js representative Justin Fagnani said he disagreed that they are &#8220;less powerful&#8221; and noted that web components already are a W3C standard.</p>\n<p>&#8220;I think WP is also uniquely positioned to help drive forward support for web components natively everywhere,&#8221; EventEspresso core dev Darren Ethier said. &#8220;Pretty much all the frameworks have the ability to work with the web component spec now. It’s just a matter of proper implementation.&#8221;</p>\n<p>Several participants referenced <a href=\"https://custom-elements-everywhere.com/\" rel=\"noopener\" target=\"_blank\">custom-elements-everywhere.com</a>, a site that displays popular JS frameworks&#8217; progress on communicating Custom Elements in a way that promotes interoperability. Matías Ventura asked React and Vue core devs how web components (and their future) fit into each framework at the moment.</p>\n<p>&#8220;In React, we have some web component support but haven&#8217;t made it a large priority since use cases have seemed slim in the past, especially since adding Web Components hasn&#8217;t made a lot of sense in a first-party application where you control the whole stack – but we do have some support for them nonetheless and I&#8217;m happy to entertain adding more, either now or in the future,&#8221; Sophie Alpert said.</p>\n<p>&#8220;On the high level I think frameworks like React/Vue provide what is not really addressed in web components: efficient and declarative DOM updates reacting to state changes,&#8221; Evan You said. &#8220;This is also why Polymer exists on top of WC. I have always acknowledged the value of WC as an interop interface.&#8221;</p>\n<p>Overall, attendees at the meeting were respectful, collaborative, and eager to contribute their expertise to help WordPress contributors find the best way forward in the framework selection process. The discussion will continue at next week&#8217;s meeting and likely in the comments of a forthcoming Make/Core post summarizing the meeting.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Sep 2017 22:16:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: SI CAPTCHA Anti-Spam Plugin Permanently Removed from WordPress.org Due to Spam Code\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75059\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/si-captcha-anti-spam-plugin-permanently-removed-from-wordpress-og-due-to-spam-code\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4092:\"<p>The <a href=\"https://wordpress.org/plugins/si-captcha-for-wordpress/\" rel=\"noopener\" target=\"_blank\">SI CAPTCHA Anti-Spam</a> plugin has been removed from the WordPress Directory due to its author including spam code. The plugin added a CAPTCHA image test to WordPress forms to prevent spam and was compatible with forms generated by bbPress, BuddyPress, Jetpack, and WooCommerce. It had more than 300,000 active installs at the time of removal.</p>\n<p><a href=\"https://profiles.wordpress.org/mikechallis\" rel=\"noopener\" target=\"_blank\">Mike Challis</a>, the original author of the plugin, said that a WordPress.org user named &#8220;<a href=\"https://profiles.wordpress.org/fastsecure\" rel=\"noopener\" target=\"_blank\">fastsecure</a>&#8221; became the new owner of SI CAPTCHA Anti-Spam in June 2017. Challis was not aware of the new owner&#8217;s plans for the plugin but <a href=\"https://wordpress.org/support/topic/where-did-the-plugin-go-2/\" rel=\"noopener\" target=\"_blank\">posted a notice</a> on the WordPress.org support forums to inform users about why it was removed.</p>\n<p>&#8220;The new owner attempted to put code in several of his newly acquired WordPress plugins that would connect to a 3rd party server he also owned and place spam ads for payday loans and such in the WP posts,&#8221; Challis said. He also linked the incident to a ring of WordPress plugins that researchers at Wordfence say were part of a <a href=\"https://www.wordfence.com/blog/2017/09/coordinated-plugin-spam/\" rel=\"noopener\" target=\"_blank\">coordinated spam campaign</a>. Display Widgets, one of the most notable plugins in this group, was recently <a href=\"https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-code\" rel=\"noopener\" target=\"_blank\">permanently removed from WordPress.org</a> for a series of violations wherein the author had injected malicious code.</p>\n<p>Challis said the new owner failed to display any spam on sites due to how the code was implemented, but the code could have been activated at a later time:</p>\n<blockquote><p>The new owner put spam code in versions 3.0.1 and 3.0.2 but it failed to display any spam because he put the code in the secureimage.php file. The malicious code required WordPress libraries to also be loaded to execute. The reason the spam code did not do anything at all is because the secureimage.php file is not included in the WordPress run time environment. The secureimage.php file is included from another file securimage_show.php that loads the captcha image directly from html img src outside of the WordPress run time. The spam code in this plugin was never activated, it would not have corrupted your posts or changed anything in the WordPress database.</p></blockquote>\n<p>SI CAPTCHA Anti-Spam users who still have the plugin installed may see an update available in the WordPress admin. Plugin team member Samuel (Otto) Wood removed the malicious code and <a href=\"https://wordpress.org/support/topic/where-did-the-plugin-go-2/\" rel=\"noopener\" target=\"_blank\">released 3.0.3</a> as a clean version that is a safe update for users who still rely on the plugin. Wood recommends users find an alternative, because SI CAPTCHA Anti-Spam will not be re-listed in the directory or receive any future updates.</p>\n<p>The incident is another reminder for users to be on alert when WordPress.org plugins change hands, as the buyers do not always disclose their actual intentions for the plugin. Users in search of an alternative to SI CAPTCHA Anti-Spam will find many alternative options on WordPress.org. <a href=\"https://wordpress.org/plugins/cleantalk-spam-protect/\" rel=\"noopener\" target=\"_blank\">AntiSpam by CleanTalk</a>, <a href=\"https://wordpress.org/plugins/simple-google-recaptcha/\" rel=\"noopener\" target=\"_blank\">Simple Google reCAPTCHA</a>, and <a href=\"https://wordpress.org/plugins/captcha-code-authentication/\" rel=\"noopener\" target=\"_blank\">CAPTCHA Code</a> are a few examples that may work as replacements, depending on what other plugins you need the anti-spam capabilities to support.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Sep 2017 21:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Facebook to Re-license React after Backlash from Open Source Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/facebook-to-re-license-react-after-backlash-from-open-source-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4566:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/12/react.png?ssl=1\"><img /></a></p>\n<p>Facebook has <a href=\"https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/\" rel=\"noopener\" target=\"_blank\">announced</a> its intentions to re-license React, Jest, Flow, and Immutable.js under the MIT license. React community members began rallying around a <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" rel=\"noopener\" target=\"_blank\">petition to re-license React</a> after the Apache Software Foundation (ASF) added Facebook’s BSD+Patents license to its Category X list of disallowed licenses for Apache PMC members. Facebook’s engineering directors officially denied the request in mid-August, citing the burden of meritless patent litigation as the reason for keeping the patents clause.</p>\n<p>Facebook moved forward on this decision in full recognition that it might lose some React community members as a consequence. Many open source project maintainers began to look for alternatives. In a surprising move, Matt Mullenweg announced that <a href=\"https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library\" rel=\"noopener\" target=\"_blank\">WordPress would also be parting ways with React</a> and planned to remove it from the upcoming Gutenberg editor.</p>\n<p>Mullenweg&#8217;s decision to drop React from consideration for WordPress was likely an influential factor in Facebook&#8217;s eventual about-face on the topic of re-licensing the project. Facebook&#8217;s announcement on Friday acknowledges that the company failed to convince the open source community of the benefits of its BSD + Patents license:</p>\n<blockquote><p>We&#8217;re relicensing these projects because React is the foundation of a broad ecosystem of open source software for the web, and we don&#8217;t want to hold back forward progress for nontechnical reasons. </p>\n<p>This decision comes after several weeks of disappointment and uncertainty for our community. Although we still believe our BSD + Patents license provides some benefits to users of our projects, we acknowledge that we failed to decisively convince this community.</p></blockquote>\n<p>The React 16 release, slated for this week, will ship with the updated MIT license. Facebook declined to respond to our request for further comment and said their post is the only public statement they will be providing.</p>\n<p>It&#8217;s not yet clear whether WordPress will continue on with React, picking up where the team left off on Gutenberg, or  shift to another library. Core contributors had originally <a href=\"https://twitter.com/nacin/status/911356481936740352\" rel=\"noopener\" target=\"_blank\">decided on React</a> while attending WordPress&#8217; community summit in Paris last June, although this decision had not yet been made public when the greater open source community started petitioning Facebook to re-license React.</p>\n<p>&#8220;I’m just so tired of this drama,&#8221; Gutenberg engineer Riad Benguella said. &#8220;We spent days and days thinking about the best framework for WP, and this change will just add more thinking, complexity, and uncertainty to our decision. I’m just tired of all this&#8230;we all have to rethink everything.&#8221;</p>\n<p>Mullenweg, who had previously penned a several-thousand word unpublished announcement about how WordPress would be adopting React, did not confirm whether WordPress is still examining other libraries.</p>\n<p>&#8220;Our decision to move away from React, based on their previous stance, has sparked a lot of interesting discussions in the WordPress world,&#8221; Mullenweg said in a <a href=\"https://ma.tt/2017/09/facebook-dropping-patent-clause/\" rel=\"noopener\" target=\"_blank\">post</a> published to his blog this weekend. &#8220;Particularly with Gutenberg there may be an approach that allows developers to write Gutenberg blocks (Gutenblocks) in the library of their choice including Preact, Polymer, or Vue, and now React could be an officially-supported option as well.&#8221;</p>\n<p>The regularly scheduled core JavaScript meeting is set for Tuesday, September 26 at 15:00 GMT and contributors plan to discuss the role a JS framework will play in current and future core focuses. The time has been changed to be two hours later than originally planned in an effort to accommodate more contributors across various timezones.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Sep 2017 16:53:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Matt: Facebook Dropping Patent Clause\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://ma.tt/2017/09/facebook-dropping-patent-clause/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1326:\"<p>I am surprised and excited to see the news that Facebook is going to drop the <a href=\"https://ma.tt/2017/09/on-react-and-wordpress/\">patent clause that I wrote about last week</a>. They’ve announced that with React 16 the license will just be <a href=\"https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/\">regular MIT with no patent addition</a>. I applaud Facebook for making this move, and I hope that patent clause use is re-examined across all their open source projects.</p>\n<p>Our decision to move away from React, based on their previous stance, has sparked a lot of interesting discussions in the WordPress world. Particularly with <a href=\"https://github.com/WordPress/gutenberg\">Gutenberg</a> there may be an approach that allows developers to write Gutenberg blocks (Gutenblocks) in the library of their choice including Preact, Polymer, or Vue, and now React could be an officially-supported option as well.</p>\n<p>I want to say thank you to everyone who participated in the discussion thus far, I really appreciate it. The vigorous debate and discussion in the comments here and on Hacker News and Reddit was great for the passion people brought and the opportunity to learn about so many different points of view; it was even better that Facebook was listening.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Sep 2017 16:20:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Scott Bolinger Shares Unique Perspective of WordPress From Outside the Bubble\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/scott-bolinger-shares-unique-perspective-of-wordpress-from-outside-the-bubble\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5058:\"<p>Scott Bolinger, a product developer focused on the WordPress space who has created several products, including <a title=\"Make native iOS and Android Apps with WordPress\" href=\"https://apppresser.com\" target=\"_blank\" rel=\"noopener\">AppPresser </a>and <a href=\"https://hollerwp.com/\">Holler Box</a>, recently attended <a href=\"http://contentandcommercesummit.com/\">Content and Commerce Summit 2017</a>.</p>\n<p>This conference focuses on what’s working in eCommerce, digital media, information publishing, and subscription commerce. <a href=\"http://scottbolinger.com/perspective-on-wordpress/\">According to Bolinger</a>, WordPress and WooCommerce were not topics of discussion.</p>\n<p>&#8220;It really opened my eyes going to an event where no one even said the word WordPress once,&#8221; Bolinger said. &#8220;The audience at this conference was non-technical, mostly marketers selling stuff online. I watched a presentation where the presenter had slides with 20+ different recommended tools on them, and not a single mention of WordPress.</p>\n<p>&#8220;This is an eCommerce conference, WooCommerce is 41% of all eCommerce stores, and not a single person said the word WooCommerce. All I heard about was Shopify and Amazon.&#8221;</p>\n<p>According to <a href=\"https://www.similartech.com/\">SimilarTech</a>, WooCommerce is leading in the top 100K sites, top 1M sites, and the entire web while Shopify is leading in the top 10K sites. While Shopify has a lot less market share, it&#8217;s used on substantially higher trafficked sites.</p>\n<p>Bolinger shared the perspective of a friend who uses Shopify to sell clothing and will gross more than $1M in revenue this year. According to his friend, Shopify is easy to use, from setting up a theme, to the plugin/app ecosystem to add functionality.</p>\n<p>&#8220;When my friend said Shopify is easy to use, this is a whole different category of great user experience,&#8221; Bolinger said. &#8220;This is building a site from scratch for a completely non-technical user, and them loving the end result and the experience.&#8221;</p>\n<p>Bolinger raised an interesting point in that, Wix, Shopify, and SquareSpace are closed, SaaS offerings where they can control the user experience from end-to-end. This is impossible to do with WordPress because there are too many moving parts and core can not control how plugins and themes take part in that experience.</p>\n<p>While WordPress core can&#8217;t necessarily solve the problem, it hasn&#8217;t stopped webhosts from trying. <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\">GoDaddy</a>,  <a href=\"https://www.bluehost.com/blog/bluehost-news/welcome-to-the-new-bluehost-8973/\">Bluehost</a>, and others have created onboarding solutions that try to control the end-to-end user experience.</p>\n<p>Bolinger shared a sentiment that many in the WordPress community have advocated in recent years. &#8220;If we’re honest, the strength of WordPress is not that it’s easy to use for non-technical people. It’s an open-source platform that is easy for developers to extend and customize for clients.&#8221;</p>\n<ul>\n<li><a href=\"https://mattreport.com/wordpress-is-not-easy/\">WordPress is Not Easy</a></li>\n<li><a href=\"https://mor10.com/wordpress-easy-thats-ok/\">WordPress is not easy – and that’s OK</a></li>\n<li><a href=\"https://neliosoftware.com/blog/is-wordpress-as-easy-as-we-think/\">Is WordPress As Easy As We Think?</a></li>\n</ul>\n<p>There was a time, somewhere between WordPress 2.3 and WordPress 3.5, where one of the main reasons people used WordPress was because it was easy. Between then and now, what caused WordPress to lose its ease-of-use factor?</p>\n<p>SquareSpace, Wix, and Shopify didn&#8217;t exist in the early days of WordPress, they were late to market. This gave them the advantage of implementing all the lessons learned through WordPress&#8217; lifespan and since it&#8217;s a closed system, they can iterate rapidly.</p>\n<p>The biggest reality check that Bolinger shares is that there are a lot of people WordPress simply doesn&#8217;t cater too.</p>\n<p>&#8220;There is a large contingent of people who just want to get stuff done, they don’t want to fuss with the tech&#8221;, He said. &#8220;They don’t care about open source or owning their data. They don’t want to install a theme and setup their widgets, or search thousands of results to find the best SEO plugin.</p>\n<p>&#8220;They don’t want to set up &#8216;managed hosting&#8217;, an SSL certificate, or a payment gateway. They just want to sell their products and make money as fast and easily as possible.&#8221;</p>\n<p>I encourage you to <a href=\"http://scottbolinger.com/perspective-on-wordpress/\">read the full post</a> as it provides a perspective of WordPress not often shared within the WordPress bubble. <a href=\"http://scottbolinger.com/perspective-on-wordpress/\"></a>How does WordPress become a platform that delivers the kind of experience from end-to-end that Bolinger&#8217;s friend describes?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Sep 2017 00:43:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: WordPress Explores a JavaScript Framework-Agnostic Approach to Building Gutenberg Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wordpress-explores-a-javascript-framework-agnostic-approach-to-building-gutenberg-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9072:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/blocks.jpg?ssl=1\"><img /></a>photo credit: found_drama <a href=\"http://www.flickr.com/photos/28555778@N00/30725752376\">E.&#8217;s pirate town</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/\">(license)</a>\n<p>The discussion regarding WordPress&#8217; JavaScript framework selection continues in the #core-js Slack channel ahead of next week&#8217;s meeting. One of the more recent topics is the possibility of <a href=\"https://github.com/WordPress/gutenberg/pull/2463\" rel=\"noopener\" target=\"_blank\">framework-agnostic block rendering</a> for Gutenberg, which would allow developers to extend the new editor using any JS library they prefer. This means that Gutenberg blocks, which are colloquially referred to as &#8220;Gutenblocks,&#8221; could be built with Vue, React, Preact, Angular, or whatever the developer feels comfortable using.</p>\n<p>Proponents of this idea contend that pursuing a more flexible approach makes WordPress&#8217; core JS framework decision <a href=\"https://github.com/WordPress/gutenberg/pull/2463#issuecomment-330637007\" rel=\"noopener\" target=\"_blank\">less critical</a>. While answering questions on the #core-js channel, Gary Pendergast explained how Gutenberg could be built to maintain the separation.</p>\n<p>&#8220;I&#8217;m really not joking when I say that this decision doesn&#8217;t matter, even for people contributing to Gutenberg,&#8221; Pendergast said. &#8220;In <a href=\"https://github.com/WordPress/gutenberg/pull/2463\" rel=\"noopener\" target=\"_blank\">#2463</a>, the library is treated entirely as a utility library, much like we use lodash, for example. It performs a handful of tasks, and it can be relatively easily pulled out and replaced with something entirely different, with no disruption to the rest of the codebase. For people contributing to Gutenberg, they&#8217;re contributing in the Gutenberg coding style, not the style of whatever library we happen to import.&#8221;</p>\n<p>When asked about a timeline for when the decision will be made and what factors are being considered, Pendergast replied that there is no timeline and that those interested in participating should blog about their experiences and write examples of things they can build with the JS frameworks they are familiar with.</p>\n<p>&#8220;There is neither roadmap, nor timeline, nor does there need to be,&#8221; Pendergast said. &#8220;As Matt mentioned, it&#8217;s really just a technical decision &#8211; the important decision for the wider community was choosing &#8216;not React.&#8217; Unfortunately, this decision has been blown way out of proportion, and heavily conflated with &#8216;what JS library will I be able to build my plugins with?&#8217; and sometimes &#8216;what JS library&#8217;s practices will Gutenberg blocks resemble?,&#8217; neither of which are related. Tweets and posts that treat it like a horse race are not helpful in this way.&#8221;</p>\n<p>Pendergast said whatever library is selected will &#8220;continue to be wrapped by the WordPress element, the underlying library won&#8217;t be exposed.&#8221; The Gutenberg team is working to remove all library dependencies from its components so that plugin developers can use any library they choose.</p>\n<p>However, other community members are not so eager to relegate the JS library selected for core to a simple technical decision or utility library.</p>\n<p>&#8220;Most developers understand that their plugins are not bound by the framework chosen for core/Gutenberg,&#8221; Kevin Hoffman said. &#8220;But that doesn&#8217;t diminish the significance of the decision. If we want to encourage more contributors, we&#8217;d be well served to choose a framework in which a significant majority feel capable and confident. If this majority is out there developing plugins with one framework and has to learn another in order to contribute to core, then we&#8217;re limiting the number of potential contributors.&#8221;</p>\n<p>Peter Booker contends that no matter how elegant Gutenberg&#8217;s separation is, having a decent understanding of the library chosen for core affects a developers&#8217; ability to deeply troubleshoot certain issues.</p>\n<p>&#8220;I do not think we should be so dismissive of the choice as a minor technical decision,&#8221; Booker said. &#8220;Understanding how PHP, JavaScript, and Backbone (among other things) work is essential to be able to properly debug problems with WordPress. The JS framework chosen for Gutenberg is going to impact a great many people, even if we are not core contributors. It will be essential knowledge to be able to fully troubleshoot issues. This is a decision which will impact far more people than just the Gutenberg team.&#8221;</p>\n<h3>What are the implications of providing a flexible, framework-agnostic approach to building Gutenblocks?</h3>\n<p>Jason Bahl asked if anyone has tried mixing React, Preact, Vue, and Angular in a single app to see if it is &#8220;a recipe for a performance nightmare.&#8221; He posed an example scenario wherein Gravity Forms builds Vue-based Gutenblocks, Yoast has React-based blocks, WooCommerce builds blocks with Preact, and another plugin uses Ember.</p>\n<p>&#8220;It sounds kind of nice to be flexible and allow folks to use whatever but also like it could lead to a lot of division on best practices, and potentially performance issues,&#8221; Bahl said. &#8220;We&#8217;ll see tutorials pop up for how to build Gutenblocks in Vue, React, Preact, Ember, Vanilla JS, etc., which would be cool to see, but also confusing and potentially cause further divide in the community and accepted best practices. Flexibility is nice to a degree, but a strong opinion at some level is also good.&#8221;</p>\n<p>Carl Hancock, co-founder of Gravity Forms, contends that offering a framework-agnostic approach to building Gutenblocks will have little influence on developers who are extending the project. The decision cannot be made less critical by offering more flexibility, because developers will inevitably adopt whatever WordPress core uses.</p>\n<p>&#8220;People are going to end up adopting whatever core uses for the most part despite the rainbows and butterflies some are claiming as it relates to creating an abstraction layer so plugin/theme developers can use whatever they want,&#8221; Hancock said. &#8220;Which means however complex that core framework ends up being will have a direct impact on the barrier to entry for plugin and theme developers. That barrier to entry has been historically low to date and a direct contributor to the growth of WordPress as a self-hosted CMS. Dramatically raising that barrier to entry isn’t necessarily a bad thing. For example, Gravity Forms will use Preact, Vue, whatever, because we have the manpower and skillset to do so when we can finally decide to do so once core makes it’s decision.&#8221;</p>\n<h3>WordPress&#8217; Opportunity to Advance the Web</h3>\n<p>WordPress currently powers 28% of all websites, according to <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener\" target=\"_blank\">W3 Techs</a>, and whatever framework it chooses will make a major impact on which library many developers decide to learn in order to extend the software and advance their careers.</p>\n<p>Matías Ventura, one of the technical leads on the Gutenberg project, encouraged participants in the discussion to look at the bigger picture and embrace the opportunity to work together and collaborate on a solution for WordPress that will advance the web. The team&#8217;s efforts to collaborate with representatives from competing frameworks stands apart in an ecosystem that is generally fragmented and fractious.</p>\n<p>&#8220;I’m excited about the opportunity we have to advance web development in terms of JavaScript UI representation, in a similar way to how WordPress was a driving force for web standards during the past decade,&#8221; Ventura said. &#8220;That’s also where I see us having a responsibility as a project, as people will continue to learn web development through WP. Many people have been introduced to PHP through WordPress, originally just interacting with WP functions and APIs, eventually diving a bit more deeply into the language as needed. I do see our core remaining close to JS the language, as that gives the most meaningful tool to learn, spanning across all frameworks and libraries.&#8221;</p>\n<p>Ventura assured participants in the ongoing discussion that the Gutenberg team is listening and working towards a solution that will push the web forward.</p>\n<p>&#8220;We are absolutely aware that how we build and what we offer through Gutenberg is going to affect the dev community and we are not taking this lightly—quite the opposite,&#8221; Ventura said. &#8220;I’ve been talking with Evan (Vue) and Jason (Preact) because rather than having a &#8216;choose your framework&#8217; contest, this seems an opportunity to collaborate and push the web forwards.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Sep 2017 22:26:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WPTavern: DonateWC Reaches Fundraising Goal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=75001\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wptavern.com/donatewc-reaches-fundraising-goal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1702:\"<p><a href=\"https://donatewc.org/\">DonateWC</a>, <a href=\"https://wptavern.com/donatewc-aims-to-provide-travel-sponsorships-to-attend-large-wordcamps\">an initiative</a> focused on providing less fortunate people an opportunity to attend large WordCamps has <a href=\"https://donatewc.org/news/surprise-our-goal-is-fully-funded/\">reached its fundraising goal</a> of 1,000€. Ines van Essen expressed gratitude and appreciation for the donations. &#8220;The responses and feedback that have come in during the past week have been overwhelming,&#8221; She said.</p>\n<p>&#8220;I can’t believe we can already move to legalizing things and actually getting things done. Lesson learned: do not spend two years thinking about something you could maybe do at some point in the future. The time is now, and it’s time to change some lives.&#8221;</p>\n<img />DonateWC Reaches Fundraising Goal\n<p>Essen confirmed that Automattic is not affiliated with the initiative although quite a few of her colleagues are supportive of the idea.  &#8220;Everyone can do something to help another community member,&#8221; She said. &#8220;Whether that&#8217;s buying someone a meal, sharing a ride, or even sharing a room. DonateWC is a big picture thing, but there&#8217;s so many other things you can do to help under privileged groups.&#8221;</p>\n<p>Essen hopes to have the non-profit and other legal aspects of the project taken care of in time to sponsor at least one person to WordCamp US. Part of the funds will be used to pay someone to design a logo and for social media marketing. If you&#8217;re interested in helping out with the project, please <a href=\"https://donatewc.org/get-in-touch/\">get in touch.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Sep 2017 00:13:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordCamp for Publishers Videos Now Available on YouTube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wordcamp-for-publishers-videos-now-available-on-youtube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2772:\"<p><a href=\"https://2017-denver.journalist.wordcamp.org\" rel=\"noopener\" target=\"_blank\">WordCamp for Publishers</a>, held last month at The Denver Post building, was the first niche WordCamp to be focused around a specific industry. The event was designed for people who use WordPress to manage publications and also to encourage collaboration among project maintainers who build open source tools for publishers.</p>\n<p>In addition to hands-on technical workshops, the <a href=\"https://2017-denver.journalist.wordcamp.org/schedule/\" rel=\"noopener\" target=\"_blank\">schedule</a> included a variety of publishing-related topics, such as monetization, content distribution, newsletter tools, and print and digital workflows.</p>\n<p>&#8220;The schedule prompted a great deal of learning and discussion that extended well beyond the content typically found at a regional WordCamp,&#8221; attendee Maura Teal <a href=\"https://mlteal.com/2017/08/wordcamp-publishers-denver/\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;One of the best aspects of this conference was chatting with other developers and leaders involved in media on the web. There were multiple sessions and hallway discussions that brought intriguing solutions to the table. My primary takeaway was that there certainly needs to be more WordCamps of this kind &#8211; that is, focused on a niche but still rooted in community.&#8221;</p>\n<p>The unique format of the event offered more small group opportunities than a traditional WordCamp does for learning, asking questions, and collaborating around tools and strategies that directly relate to publishers.</p>\n<p>&#8220;WordCamp for Publishers was not your average or typical WordCamp,&#8221; attendee Dwayne McDaniel <a href=\"https://www.mcdwayne.com/2017/08/21/wordcamp-for-publishers/\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;It felt a lot more like WPCampus insofar as the general mood and feeling I got from the participants. Getting to see folks from competing media companies openly discussing how to solve their common challenges, I learned a whole lot and I am grateful to have had the chance to learn about the publishing space.&#8221;</p>\n<p>Videos for all of the sessions held in the auditorium are now available in a <a href=\"https://www.youtube.com/playlist?list=PLp4P7UHKK-kC1CGF3LDtfPDwtLEzDKiP9\" rel=\"noopener\" target=\"_blank\">YouTube playlist</a>. They will also be uploaded to WordPress.tv in the near future. Organizer Steph Yiu said the event was so successful that they are already planning next year&#8217;s conference. Anyone interested in volunteering or donating a venue can <a href=\"https://vip.wordpress.com/2017/09/01/wordcamp-for-publishers/\" rel=\"noopener\" target=\"_blank\">get in touch</a> with the organizing team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Sep 2017 18:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Apply Filters Podcast to be Retired after 83 Episodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2025:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/09/apply-filters.png?ssl=1\"><img /></a></p>\n<p><a href=\"http://bradt.ca/\" rel=\"noopener\" target=\"_blank\">Brad Touesnard</a> and <a href=\"http://pippinsplugins.com/\" rel=\"noopener\" target=\"_blank\">Pippin Williamson</a> are retiring from podcasting. Their bi-weekly show <a href=\"http://applyfilters.fm/\" rel=\"noopener\" target=\"_blank\">Apply Filters</a>, a favorite podcast among WordPress developers, will go off the air after publishing its 83rd episode. The hosts have not yet revealed why they are retiring but plan to share more details in the final episode.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We’ll answer that next week during the episode! :)</p>\n<p>&mdash; Apply Filters (@applyfilters) <a href=\"https://twitter.com/applyfilters/status/910593317179555840\">September 20, 2017</a></p></blockquote>\n<p></p>\n<p>Apply Filters focused primarily on development and technical topics but also provided a wealth of information on business models, pricing, and marketing in the WordPress product ecosystem. The first episode aired August 15, 2013, just after the Heartbeat API was introduced in WordPress 3.6.</p>\n<p>The show&#8217;s imminent retirement was announced on Twitter today to the disappointment of its many loyal fans. According to the information available on the sponsors page, each episode was receiving more than 2,000 downloads in the first three months after publishing. Roughly 54% of the audience identified as developers.</p>\n<p>During the past six months, the frequency of the episodes had slowed to once per month. I wouldn&#8217;t be surprised if the hosts became too busy to keep up with the show, as they both lead successful WordPress product businesses. Touesnard and Williamson plan to record one final mailbag episode before retiring the show indefinitely and are inviting listeners to <a href=\"http://applyfilters.fm/submit-topic-idea/\" rel=\"noopener\" target=\"_blank\">send in any last questions</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Sep 2017 03:54:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: New Core Gallery Widget Targeted for WordPress 4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74896\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/new-core-gallery-widget-targeted-for-wordpress-4-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3816:\"<p>The <a href=\"https://wordpress.org/plugins/wp-core-media-widgets/\" rel=\"noopener\" target=\"_blank\">Core Media Widgets</a> feature plugin introduced a gallery widget in the 0.2.0 release this week. WordPress 4.8 added the new audio, image, and video widgets from this feature plugin. The gallery widget is targeted for merge into the upcoming WordPress 4.9 release.</p>\n<p>In testing the new feature I found it to be a simple, straightforward implementation of a gallery widget that could easily replace many plugins that are currently filling this need for users. The option to edit or replace a gallery is immediately available and users can easily rearrange or randomize the images included.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/core-gallery-widget.png?ssl=1\"><img /></a></p>\n<p>On the frontend the gallery displays neatly in a thumbnail grid. I was able to change the number of columns while editing the gallery, but the preview in the admin did not match the the way the gallery looks on the frontend. The number of columns is correct on the frontend but not in the admin preview. This might cause some confusion for users if it isn&#8217;t fixed before landing in core. Contributors to the plugin are looking at this <a href=\"https://github.com/xwp/wp-core-media-widgets/issues/190#issuecomment-331011895\" rel=\"noopener\" target=\"_blank\">issue</a>.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-20-at-3.16.22-PM-e1505938641908.png?ssl=1\"><img /></a></p>\n<p>Overall, the implementation is user-friendly and similar to adding galleries in posts and pages. However, the widget could still use some testing, especially with different plugins installed. For example, with Jetpack enabled, users can choose between a thumbnail and a slideshow gallery, but the slideshow option doesn&#8217;t seem to work correctly in the widget. WordPress.org has <a href=\"https://wordpress.org/plugins/search/gallery+widget/\" rel=\"noopener\" target=\"_blank\">several hundred plugins</a> that implement some sort of gallery widget and these plugin authors will want to test the new core widget.</p>\n<p>Theme authors will also need to test how the core gallery widget interacts with their themes. After testing the gallery widget with several popular WordPress.org themes, I found that many display the thumbnails with unsightly outlines and unpredictable spacing between images.</p>\n<p>Weston Ruter, who authored the <a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\" rel=\"noopener\" target=\"_blank\">dev note post</a> when the previous media widgets were introduced in 4.8, said that the paragraph regarding default theme updates is still applicable:</p>\n<blockquote><p>Themes that add custom styles to the MediaElement.js player (namely Twenty Thirteen and Twenty Fourteen) were updated from just styling it within syndicated content, to also include instances within widgets. Most themes don’t restrict styles for captioned images or media players to just post content, that is, limit CSS selectors to classes output by post_class(). If your theme does, make sure to either remove that constraint or include a .widget selector.</p></blockquote>\n<p>Ruter said another dev note will be coming with common theme changes that are required to add the right styling for galleries. Users and theme/plugin developers can test the gallery widget right now on 4.8.2 or 4.9-alpha using the <a href=\"https://wordpress.org/plugins/wp-core-media-widgets/\" rel=\"noopener\" target=\"_blank\">Core Media Widgets</a> plugin. Once the widget is added to WordPress, it will be deactivated in the feature plugin for future releases. Contributors plan to merge the new widget into core next week, provided testing goes well.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Sep 2017 00:35:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WPWeekly Episode 288 – No React.js Framework for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74933&preview=true&preview_id=74933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wpweekly-episode-288-no-react-js-framework-for-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3046:\"<p>While I was supposed to be on vacation last week, I instead had surgery for a broken ankle. Tune in to hear the hilarious explanation on how I broke it. The lesson I learned is to not chase animals out of the yard.</p>\n<p><a href=\"https://jjj.blog/\">John James Jacoby</a> and I discuss the news of the week, including a major decision where Gutenberg will not be written in React due to a patent clause in its license. Other topics include, blind speaker selection for WordCamp US, <a href=\"https://jjj.blog/2017/09/turbo-boost-for-bbpress-2-6/\">bbPress performance improvements</a>, and our picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/equifax-launches-wordpress-powered-site-for-consumers-affected-by-security-breach\">Equifax Launches WordPress-Powered Site for Consumers Affected by Security Breach</a><br />\n<a href=\"https://wptavern.com/swfupload-will-officially-be-removed-from-wordpress\">SWFUpload Will Officially Be Removed From WordPress</a><br />\n<a href=\"https://wptavern.com/wordpress-org-adds-new-support-rep-role-for-plugin-pages\">WordPress.org Adds New Support Rep Role for Plugin Pages</a><br />\n<a href=\"https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-code\">Display Widgets Plugin Permanently Removed from WordPress.org Due to Malicious Code</a><br />\n<a href=\"https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library\">WordPress Abandons React due to Patents Clause, Gutenberg to be Rewritten with a Different Library</a><br />\n<a href=\"https://wptavern.com/donatewc-aims-to-provide-travel-sponsorships-to-attend-large-wordcamps\">DonateWC Aims to Provide Travel Sponsorships to Attend Large WordCamps</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wptranslationday.org/\">WordPress Global Translation day</a> is next Saturday, September 30th. Twenty-four hours dedicated to translating the WordPress ecosystem through sessions, training marathons, and local events.</p>\n<p><a href=\"https://local.getflywheel.com\">Local by Flywheel</a> is software that easily creates a local environment for WordPress development.</p>\n<p>From the folks behind GiveWP, <a href=\"https://givewp.com/give-live/\">Give Live</a> is a series of webinars for the community.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 27th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #288:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Sep 2017 22:13:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"HeroPress: What I Do Does Not Define Who I Am\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://heropress.com/essays/what-i-do-does-not-define-who-i-am/#utm_source=rss&utm_medium=rss&utm_campaign=what-i-do-does-not-define-who-i-am\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13146:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/09/092017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I became completely inspired by the mission of WordPress. I had become a part of something bigger than myself.\" /><p>The first time I ever made a WordPress site, I got 180,000 views in 2 days, 253 comments, and (give or take) 7 death threats.</p>\n<p>It was 2014 and I was working on an MBA at Florida State University during the peak of the Jameis Winston controversy, where a football quarterback was accused of rape and protected from prosecution by the university and local police. I had used WordPress before, but not a lot. But, in true democratizing publishing, giving a voice to the voiceless fashion, when I had something I wanted to say, I knew just the thing to get it out there with minimal know-how: a free, single page WordPress.com site.</p>\n<p>I had just returned to Florida from a summer in New York City. To my amazement, I got the life-changing opportunity, paid for by the university’s College of Social Sciences paid, to go up there for a summer of exploration in the social entrepreneurship and technology circles after pitching Florida State on a concept for financial education.</p>\n<h3>Beginning the Journey</h3>\n<p>I had become interested in financial education around the age of 16, when my family became homeless for a month. My mom hadn’t been able to make the rent, so we got kicked out, and then couldn’t find an apartment easily due to my mom’s lack of credit. Later, I started working at a major commercial bank and met hundreds, if not thousands, of people in similar situations (and saw the ways in which major commercial banks don’t help these people, but that’s a different conversation).</p>\n<p>Imagine having been homeless at 16. Then, 6 years later, you’re attending graduate school, funded by the university, and that same university also paid for you to live in the country’s most expensive place for 3 months so that you could learn about executing your ideas on how to make a positive difference through technology entrepreneurship.</p>\n<p>You would probably be overcome with gratefulness. But you would also likely be extremely protective of the people making such a thing possible.</p>\n<p>Now imagine, that while Florida State University’s programs making such an impact on you, a football player’s actions are driving the narrative of this place you want to be proud of.</p>\n<blockquote><p>Imagine me, telling the story I just told you, and watching people connect the dots between what institution was making all of this possible for me, and what they had heard of it. “Oh, my God, with the quarterback that raped that girl?” they would say.</p></blockquote>\n<p>I would link you to the page I created, but quite honestly, it wasn’t a lot more than a profanity-laden rant (of admittedly epic proportions). But, it got a reaction: she needs to shut the f**k up. She’s completely right. She’s an “attention-seeking whore!”. She’s the story we should be focusing on. She’s just upset her Kickstarter campaign failed.</p>\n<p>There it was: WordPress had amplified my voice, and everyone else’s, too.</p>\n<h3>Finding WordPress Business</h3>\n<p>Today, I’m the lesser-known half of Caldera Labs, makers of Caldera Forms, a top drag-and-drop form building plugin for WordPress. A few weeks ago, we got a one-star review on WordPress.org that called me out by name: “their team is useless, especially Christie Chirinos.” I received caring notes from several seasoned WordPress product developers, reassuring me that these things happen and I ought to not take it personally. “It’s not the first time someone’s been mean to me on the internet, and it probably won’t be the last,” I wrote in a Slack DM to my incredible business partner, the part of Caldera Labs you probably know, Josh Pollock. Josh laughed.</p>\n<p>My road from single-page rants on WordPress.com to WordPress product leadership was actually pretty straightforward, although certainly wrapped in incredible fortune. I kept up that blog for a few months at the request of some of those 253 people (and the dismay of some others). Eventually it was forgotten for my financial education project’s website, which went from Wix to self-hosted WordPress.</p>\n<p>Some months of working on that site made me acutely aware that if I wanted to execute more of my ideas, I should learn more code. I started learning JavaScript and PHP. I met Josh somewhere around that time. He liked my WordPress.com story, and encouraged me to keep learning, while picking my brain on what my almost-finished MBA thought about Caldera Forms.</p>\n<p>A professor asked me if I would work on his academic WordPress website for a fee. I was a broke graduate student, so I said yes. Suddenly I had clients. When I graduated, Josh approached me with a proposal to join him in business. I said yes, but my only condition is that I’m moving back to New York City. Josh said, remote work is the norm.</p>\n<p><img class=\"aligncenter size-large wp-image-2118\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/09/screen_shot_2017-09-19_at_8.26.20_pm-1024x374.png\" alt=\"Screen shot of Caldera website\" width=\"960\" height=\"351\" /></p>\n<p>&nbsp;</p>\n<p>Despite the quote-unquote “formal business education,” I was flabbergasted when the full weight of what a WordPress product business entailed hit me. I didn’t understand the community. I didn’t understand the niche’s culture. Much of what I learned were business norms, were completely non-existent in WordPress. I communicated all of this to Josh.</p>\n<blockquote><p>“I have no idea what I’m doing.”</p>\n<p>“Of course you don’t, you’ve never done this before.”</p>\n<p>He introduced me to the extensive library of talks on WordPress TV on imposter syndrome.</p></blockquote>\n<h3>Diving Into WordCamp</h3>\n<p>For me, it clicked at the inaugural WordCamp US. I showed up to the event looking like a deer caught in the headlights and was welcomed with open arms. I got to put faces to all of the names I had learned in the last half-year, and surprise: they were nice. They were welcoming. They were understanding.</p>\n<p>I scoffed at the idea that I would have anything to contribute on Contributor Day, and then found out that the polyglots team could totally use an immigrant that speaks 4 languages. More importantly, I became completely inspired by the mission of WordPress. I realized that, by total accident (or perhaps completely on purpose), I had become a part of something bigger than myself. I had to stick with it, no matter how hard it was.</p>\n<p>In the year after that, I also began to find a small niche for myself. I became “the girl with the MBA,” smart, young, and clearly lucky. “There’s not a lot of people in the space with your background,” said the host interviewing me on a WordPress podcast. Meanwhile, I’m thinking to myself, “oh my god. I don’t even understand why you invited me. I’m very grateful, but I also really don’t know that much about business. Didn’t you notice? Didn’t anyone tell you?”</p>\n<p>Move forward a year, and results started rolling in. I spoke at 4 WordCamps and many other shows. Josh published his 2016 Year In Review, where he outlined the explosive growth that Caldera Forms experienced at the end of the year and acknowledged the benefit of having partnered with me. He doesn’t know this, but I cried when I read that (now he knows).</p>\n<blockquote><p>It was surreal: the unlikely thing that we set out to do was working.</p></blockquote>\n<p>This year, 2017, has consisted of taking on the next step in that process: teaching myself how to turn all of those thoughts on their heads. I have had to unlearn “why me?” and internalize “why not me?”, and most importantly, practice differentiating the story that I tell myself about myself versus the evidence-based reality.</p>\n<h3>Self Discovery</h3>\n<p>A crucial part of this stage has been learning that what I do does not define who I am. That’s a tired joke where I live. The joke goes that you can go to any bar, and participate in the same script: what’s your name? What do you do? “I’m Christie, and I’m a partner and the business manager at a commercial WordPress plugin shop, Caldera Labs” is a story, and it immediately sparks self-doubt. That isn’t an answer that describes an evidence-based reality, it is an answer that describes a story, and stories by definition require effort to be believed.</p>\n<blockquote><p>Who I am, I am learning, is the collection of my experiences, which then drive my priorities in how I do what I do, which is business.</p></blockquote>\n<p>In that podcast interview, I wasn’t told “there aren’t many business managers in the space.” I was told that there weren’t a lot of people with my background in the space. It’s the collection of my stories &#8211; of immigration, difficult childhoods, arguments in business school classrooms and accidentally viral WordPress websites, that perfectly positioned me to do what I’m doing right now.</p>\n<p>The main reason I wanted to write for HeroPress when Topher offered was to take these thoughts out of my story. The more I grow into this role, the more I’m learning that this is especially common with people like me.</p>\n<p>Research is being conducted more and more every day seeking to discover why we don’t become entrepreneurs who fearlessly pursue happiness and high-risk, high-reward situations (the common trope being that privilege is being told to strive to be anything one wants to be, while others are told to strive for an escape from instability).</p>\n<blockquote><p>Most of it boils down to the idea that many minorities, women, immigrants, people from low-income households &#8211; take your pick &#8211; have convinced themselves of a story that does not, in fact, reflect the reality of their possibilities.</p></blockquote>\n<p>It’s a shame, because there’s almost as much research that demonstrates that businesses with diverse leadership teams outperform homogeneous teams almost every single time.</p>\n<p>Let’s start talking about this, even if this isn’t something that directly relates to you. Because, if that is the case, chances are that this is a topic that relates to someone you know. Diversity of thought is an important part of our WordPress community narrative. If you are not the person who must assess replacing a story with an evidence-based reality, you may be someone who is positioned to engage in powerful actions to promote diversity of thought, like encouraging someone else to challenge the stories they tell themselves and the stories they tell others about themselves. “I’m Christie, and I lead all of the business development and marketing for a commercial WordPress plugin shop, Caldera Labs” sounds a lot better.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: What I Do Does Not Define Who I Am\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=What%20I%20Do%20Does%20Not%20Define%20Who%20I%20Am&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-do-does-not-define-who-i-am%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: What I Do Does Not Define Who I Am\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-do-does-not-define-who-i-am%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-do-does-not-define-who-i-am%2F&title=What+I+Do+Does+Not+Define+Who+I+Am\" rel=\"nofollow\" target=\"_blank\" title=\"Share: What I Do Does Not Define Who I Am\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/what-i-do-does-not-define-who-i-am/&media=https://heropress.com/wp-content/uploads/2018/09/092017-150x150.jpg&description=What I Do Does Not Define Who I Am\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: What I Do Does Not Define Who I Am\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/what-i-do-does-not-define-who-i-am/\" title=\"What I Do Does Not Define Who I Am\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/what-i-do-does-not-define-who-i-am/\">What I Do Does Not Define Who I Am</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Sep 2017 12:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christie Chirinos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: WordPress 4.8.2 Patches Eight Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-4-8-2-patches-eight-security-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:840:\"<p>WordPress 4.8.2 <a href=\"https://wordpress.org/news/2017/09/wordpress-4-8-2-security-and-maintenance-release/\">is available for download</a> and users are encouraged to update as soon as possible. This release patches eight security vulnerabilities and has six maintenance related fixes. Hardening was also added to WordPress core to prevent plugins and themes from accidentally causing a vulnerability through <code>$wpdb-&gt;prepare()</code> which can create unexpected and unsafe queries leading to potential SQL injection (SQLi).</p>\n<p>To see a full list of changes, check out the <a href=\"https://codex.wordpress.org/Version_4.8.2\">release notes</a>. Auto updates are rolling out to sites that support them but if you&#8217;d like to update manually, you can browse to Dashboard &#8211; Updates and click the Update Now button.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Sep 2017 01:22:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 15 Oct 2017 00:44:39 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 15 Oct 2017 00:30:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911163210\";}','no'),(13559,'_site_transient_timeout_community-events-c383d8dfea3a78709e23b17e67546ad1','1508071478','no'),(13560,'_site_transient_community-events-c383d8dfea3a78709e23b17e67546ad1','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"166.170.0.0\";}s:6:\"events\";a:3:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Milwaukee\";s:3:\"url\";s:35:\"https://2017.milwaukee.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Milwaukee, Wisconsin, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.03836530000000237805579672567546367645263671875;s:9:\"longitude\";d:-87.9121075999999987971023074351251125335693359375;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}}}','no'),(13051,'booking_activation_process','Off','yes'),(13052,'booking_admin_cal_count','2','yes'),(13053,'booking_skin','/css/skins/traditional-light.css','yes'),(13054,'booking_num_per_page','10','yes'),(13055,'booking_sort_order','','yes'),(13056,'booking_default_toolbar_tab','filter','yes'),(13057,'booking_listing_default_view_mode','vm_calendar','yes'),(13058,'booking_view_days_num','90','yes'),(13059,'booking_max_monthes_in_calendar','1y','yes'),(13060,'booking_client_cal_count','1','yes'),(13061,'booking_start_day_weeek','0','yes'),(13062,'booking_title_after_reservation','Thank you for your online booking.  We will send confirmation of your booking as soon as possible.','yes'),(12046,'_site_transient_timeout_community-events-898efdca2346face8be87621efdfca09','1505613908','no'),(12047,'_site_transient_community-events-898efdca2346face8be87621efdfca09','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"50.102.82.0\";}s:6:\"events\";a:4:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Milwaukee\";s:3:\"url\";s:35:\"https://2017.milwaukee.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Milwaukee, Wisconsin, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.03836530000000237805579672567546367645263671875;s:9:\"longitude\";d:-87.9121075999999987971023074351251125335693359375;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}}}','no'),(10975,'lwa_version','3.1.7','yes'),(10977,'lwa_data','a:7:{s:8:\"template\";s:7:\"default\";s:14:\"login_redirect\";s:44:\"http://www.rasburytech.com/affiliate-home-2/\";s:15:\"logout_redirect\";s:58:\"http://www.rasburytech.com/affiliate-home/affiliate-login/\";s:10:\"role_login\";a:1:{s:9:\"affiliate\";s:44:\"http://www.rasburytech.com/affiliate-home-2/\";}s:11:\"role_logout\";a:1:{s:9:\"affiliate\";s:58:\"http://www.rasburytech.com/affiliate-home/affiliate-login/\";}s:20:\"notification_subject\";s:31:\"Your registration at %BLOGNAME%\";s:20:\"notification_message\";s:257:\"Thanks for signing up to our blog. \r\n\r\nYou can login with the following credentials by visiting %BLOGURL%\r\n\r\nUsername: %USERNAME%\r\nTo set your password, visit the following address: %PASSWORD%\r\n\r\nWe look forward to your next visit!\r\n\r\nThe team at %BLOGNAME%\";}','yes'),(10976,'widget_loginwithajaxwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10984,'rul_version','2.9.1','no'),(10985,'rul_settings','a:5:{s:14:\"rul_local_only\";s:1:\"1\";s:32:\"rul_allow_post_redirect_override\";s:1:\"0\";s:39:\"rul_allow_post_redirect_override_logout\";s:1:\"0\";s:27:\"rul_use_redirect_controller\";s:1:\"0\";s:23:\"rul_required_capability\";s:17:\"manage_categories\";}','yes'),(11107,'_site_transient_timeout_community-events-bc39e533077850996e4346a6b5634afb','1504319445','no'),(11108,'_site_transient_community-events-bc39e533077850996e4346a6b5634afb','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.77.95.0\";}s:6:\"events\";a:3:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:28:\"https://2017.us.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-12-01 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Nashville, TN, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.15660849999999726378518971614539623260498046875;s:9:\"longitude\";d:-86.7784908999999942125214147381484508514404296875;}}}}','no'),(12983,'_site_transient_timeout_browser_3d5f26438973a3d90b630a57c59a2f98','1507678117','no'),(11283,'_site_transient_timeout_community-events-baf468ef5afaef5e392144b44f34dbde','1504622024','no'),(11284,'_site_transient_community-events-baf468ef5afaef5e392144b44f34dbde','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"50.102.95.0\";}s:6:\"events\";a:3:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:28:\"https://2017.us.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-12-01 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Nashville, TN, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:36.15660849999999726378518971614539623260498046875;s:9:\"longitude\";d:-86.7784908999999942125214147381484508514404296875;}}}}','no'),(13012,'_site_transient_timeout_community-events-6ef47a6eaebffcabb13ec69757fb3fc3','1507134147','no'),(13013,'_site_transient_community-events-6ef47a6eaebffcabb13ec69757fb3fc3','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"158.140.172.0\";}s:6:\"events\";a:0:{}}','no'),(13019,'_site_transient_timeout_browser_7d3f9da7d4a2b9ba6cfa5ed36edd01e3','1507695741','no'),(13020,'_site_transient_browser_7d3f9da7d4a2b9ba6cfa5ed36edd01e3','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"55.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";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:1;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(11414,'_site_transient_timeout_community-events-1c756602f249964eb51495265244c605','1504792183','no'),(11415,'_site_transient_community-events-1c756602f249964eb51495265244c605','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"45.52.238.0\";}s:6:\"events\";a:4:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Ann Arbor\";s:3:\"url\";s:34:\"https://2017.annarbor.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-13 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Ann Arbor, Michigan, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:42.2807892000000009602445061318576335906982421875;s:9:\"longitude\";d:-83.738155599999998912608134560286998748779296875;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Milwaukee\";s:3:\"url\";s:35:\"https://2017.milwaukee.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:35:\"Milwaukee, Wisconsin, United States\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.03836530000000237805579672567546367645263671875;s:9:\"longitude\";d:-87.9121075999999987971023074351251125335693359375;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:21:\"WordCamp Columbus, OH\";s:3:\"url\";s:34:\"https://2017.columbus.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Columbus, OH\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.9973083000000002584783942438662052154541015625;s:9:\"longitude\";d:-83.0361524000000059686499298550188541412353515625;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:19:\"WordCamp Cincinnati\";s:3:\"url\";s:36:\"https://2017.cincinnati.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-11 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Cincinnati, OH, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.1310799999999971987563185393810272216796875;s:9:\"longitude\";d:-84.517784100000000080399331636726856231689453125;}}}}','no'),(11397,'jpum_reviews_installed_on','2017-09-06 20:33:01','yes'),(11411,'ws_ame_dashboard_widgets','{\n    \"format\": {\n        \"name\": \"Admin Menu Editor dashboard widgets\",\n        \"version\": \"1.0\"\n    },\n    \"widgets\": [\n        {\n            \"id\": \"dashboard_right_now\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"At a Glance\",\n                \"location\": \"normal\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/dashboard.php\"\n        },\n        {\n            \"id\": \"dashboard_activity\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"Activity\",\n                \"location\": \"normal\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/dashboard.php\"\n        },\n        {\n            \"id\": \"wordfence_activity_report_widget\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"Wordfence activity in the past week\",\n                \"location\": \"normal\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\"\n        },\n        {\n            \"id\": \"wpseo-dashboard-overview\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"Yoast SEO Posts Overview\",\n                \"location\": \"normal\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-dashboard-widget.php\"\n        },\n        {\n            \"id\": \"dashboard_quick_press\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"<span class=\\\"hide-if-no-js\\\">Quick Draft<\\/span> <span class=\\\"hide-if-js\\\">Drafts<\\/span>\",\n                \"location\": \"side\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/dashboard.php\"\n        },\n        {\n            \"id\": \"dashboard_primary\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": true,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"WordPress Events and News\",\n                \"location\": \"side\",\n                \"priority\": \"core\"\n            },\n            \"wasPresent\": true,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/dashboard.php\"\n        },\n        {\n            \"id\": \"dashboard_browser_nag\",\n            \"title\": \"\",\n            \"location\": \"\",\n            \"priority\": \"\",\n            \"isPresent\": false,\n            \"grantAccess\": [],\n            \"widgetType\": \"wrapper\",\n            \"wrappedWidget\": {\n                \"title\": \"Your browser is out of date!\",\n                \"location\": \"normal\",\n                \"priority\": \"high\"\n            },\n            \"wasPresent\": false,\n            \"callbackFileName\": \"\\/home\\/avidwe5\\/public_html\\/rasburytech.com\\/wp-admin\\/includes\\/dashboard.php\"\n        }\n    ],\n    \"siteComponentHash\": \"aa8aef3b269a14451824d4dbdc09a4eb\"\n}','no'),(13183,'widget_wpdevart_bc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(11406,'ws_menu_editor_pro','a:22:{s:22:\"hide_advanced_settings\";b:1;s:16:\"show_extra_icons\";b:0;s:11:\"custom_menu\";a:7:{s:4:\"tree\";a:21:{s:9:\"index.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:10:\">index.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:2:{i:0;a:32:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:19:\"index.php>index.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:4:\"Home\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"index.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"index.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"index.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}s:29:\"required_capability_read_only\";s:4:\"read\";}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:25:\"index.php>update-core.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:87:\"Updates <span class=\'update-plugins count-0\'><span class=\'update-count\'>0</span></span>\";s:12:\"access_level\";s:11:\"update_core\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"update-core.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"index.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:15:\"update-core.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:9:\"Dashboard\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"index.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:43:\"menu-top menu-top-first menu-icon-dashboard\";s:8:\"hookname\";s:14:\"menu-dashboard\";s:8:\"icon_url\";s:19:\"dashicons-dashboard\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"index.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:11:\"separator_3\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:1;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:12:\">separator_3\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:0:\"\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"separator_3\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:17:\"wp-menu-separator\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:1;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:0:\"\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:8:\"edit.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:9:\">edit.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:4:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:17:\"edit.php>edit.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:9:\"All Posts\";s:12:\"access_level\";s:10:\"edit_posts\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:8:\"edit.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:8:\"edit.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:8:\"edit.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:21:\"edit.php>post-new.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Add New\";s:12:\"access_level\";s:10:\"edit_posts\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"post-new.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:8:\"edit.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:12:\"post-new.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:40:\"edit.php>edit-tags.php?taxonomy=category\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:10:\"Categories\";s:12:\"access_level\";s:17:\"manage_categories\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:31:\"edit-tags.php?taxonomy=category\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:8:\"edit.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:31:\"edit-tags.php?taxonomy=category\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:40:\"edit.php>edit-tags.php?taxonomy=post_tag\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:4:\"Tags\";s:12:\"access_level\";s:16:\"manage_post_tags\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:8:\"edit.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Posts\";s:12:\"access_level\";s:10:\"edit_posts\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:8:\"edit.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:37:\"menu-top menu-icon-post open-if-no-js\";s:8:\"hookname\";s:10:\"menu-posts\";s:8:\"icon_url\";s:20:\"dashicons-admin-post\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:8:\"edit.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:11:\"CaptainForm\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:12:\">CaptainForm\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:5:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"CaptainForm>CaptainForm\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:11:\"CaptainForm\";s:10:\"menu_title\";s:8:\"My Forms\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"CaptainForm\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"CaptainForm\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:26:\"admin.php?page=CaptainForm\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"CaptainForm>CaptainForm-NewForm\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:7:\"NewForm\";s:10:\"menu_title\";s:8:\"New Form\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"CaptainForm-NewForm\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"CaptainForm\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:34:\"admin.php?page=CaptainForm-NewForm\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:33:\"CaptainForm>CaptainForm-MyAccount\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:9:\"MyAccount\";s:10:\"menu_title\";s:10:\"My Account\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:21:\"CaptainForm-MyAccount\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"CaptainForm\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:36:\"admin.php?page=CaptainForm-MyAccount\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:34:\"CaptainForm>CaptainForm-ChangePlan\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:10:\"ChangePlan\";s:10:\"menu_title\";s:11:\"Change Plan\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:22:\"CaptainForm-ChangePlan\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"CaptainForm\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:37:\"admin.php?page=CaptainForm-ChangePlan\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"CaptainForm>CaptainForm-Support\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:7:\"Support\";s:10:\"menu_title\";s:7:\"Support\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"CaptainForm-Support\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"CaptainForm\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:34:\"admin.php?page=CaptainForm-Support\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:11:\"CaptainForm\";s:10:\"menu_title\";s:11:\"CaptainForm\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"CaptainForm\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:34:\"menu-top toplevel_page_CaptainForm\";s:8:\"hookname\";s:25:\"toplevel_page_CaptainForm\";s:8:\"icon_url\";s:89:\"http://www.rasburytech.com/wp-content/plugins/captainform/admin/images/captainform-18.png\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:26:\"admin.php?page=CaptainForm\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:10:\"upload.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:11:\">upload.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:2:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:21:\"upload.php>upload.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Library\";s:12:\"access_level\";s:12:\"upload_files\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"upload.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"upload.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"upload.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"upload.php>media-new.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Add New\";s:12:\"access_level\";s:12:\"upload_files\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"media-new.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"upload.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:13:\"media-new.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Media\";s:12:\"access_level\";s:12:\"upload_files\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"upload.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:24:\"menu-top menu-icon-media\";s:8:\"hookname\";s:10:\"menu-media\";s:8:\"icon_url\";s:21:\"dashicons-admin-media\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"upload.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:23:\"edit.php?post_type=page\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\">edit.php?post_type=page\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:2:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:47:\"edit.php?post_type=page>edit.php?post_type=page\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:9:\"All Pages\";s:12:\"access_level\";s:10:\"edit_pages\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:23:\"edit.php?post_type=page\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:23:\"edit.php?post_type=page\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:23:\"edit.php?post_type=page\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:51:\"edit.php?post_type=page>post-new.php?post_type=page\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Add New\";s:12:\"access_level\";s:10:\"edit_pages\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:27:\"post-new.php?post_type=page\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:23:\"edit.php?post_type=page\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"post-new.php?post_type=page\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Pages\";s:12:\"access_level\";s:10:\"edit_pages\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:23:\"edit.php?post_type=page\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:23:\"menu-top menu-icon-page\";s:8:\"hookname\";s:10:\"menu-pages\";s:8:\"icon_url\";s:20:\"dashicons-admin-page\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:23:\"edit.php?post_type=page\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:15:\"wpam-affiliates\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:16:\">wpam-affiliates\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:8:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"wpam-affiliates>wpam-affiliates\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:10:\"Affiliates\";s:10:\"menu_title\";s:13:\"My Affiliates\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wpam-affiliates\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wpam-affiliates\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:33:\"wpam-affiliates>wpam-newaffiliate\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:13:\"New Affiliate\";s:10:\"menu_title\";s:13:\"New Affiliate\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"wpam-newaffiliate\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:32:\"admin.php?page=wpam-newaffiliate\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"wpam-affiliates>wpam-creatives\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:9:\"Creatives\";s:10:\"menu_title\";s:12:\"My Creatives\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:14:\"wpam-creatives\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"admin.php?page=wpam-creatives\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:29:\"wpam-affiliates>wpam-payments\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"PayPal Mass Pay\";s:10:\"menu_title\";s:15:\"PayPal Mass Pay\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"wpam-payments\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"admin.php?page=wpam-payments\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:29:\"wpam-affiliates>wpam-settings\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:8:\"Settings\";s:10:\"menu_title\";s:8:\"Settings\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"wpam-settings\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"admin.php?page=wpam-settings\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:34:\"wpam-affiliates>wpam-clicktracking\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:33:\"Affiliates Manager Click Tracking\";s:10:\"menu_title\";s:14:\"Click Tracking\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:18:\"wpam-clicktracking\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:33:\"admin.php?page=wpam-clicktracking\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"wpam-affiliates>wpam-commission\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:34:\"Affiliates Manager Commission Data\";s:10:\"menu_title\";s:11:\"Commissions\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wpam-commission\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wpam-commission\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"wpam-affiliates>wpam-addons\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:26:\"Affiliates Manager Add-ons\";s:10:\"menu_title\";s:7:\"Add-ons\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"wpam-addons\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpam-affiliates\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:26:\"admin.php?page=wpam-addons\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:20:\"Affiliate Management\";s:10:\"menu_title\";s:10:\"Affiliates\";s:12:\"access_level\";s:10:\"wpam_admin\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wpam-affiliates\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:38:\"menu-top toplevel_page_wpam-affiliates\";s:8:\"hookname\";s:29:\"toplevel_page_wpam-affiliates\";s:8:\"icon_url\";s:16:\"dashicons-groups\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wpam-affiliates\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:15:\"lcp_admin_leads\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:16:\">lcp_admin_leads\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:5:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"lcp_admin_leads>lcp_admin_leads\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:5:\"Leads\";s:10:\"menu_title\";s:5:\"Leads\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"lcp_admin_leads\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"lcp_admin_leads\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=lcp_admin_leads\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"lcp_admin_leads>lcp_admin_forms\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:5:\"Forms\";s:10:\"menu_title\";s:5:\"Forms\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"lcp_admin_forms\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"lcp_admin_leads\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=lcp_admin_forms\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:35:\"lcp_admin_leads>lcp_admin_companies\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:9:\"Companies\";s:10:\"menu_title\";s:9:\"Companies\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"lcp_admin_companies\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"lcp_admin_leads\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:34:\"admin.php?page=lcp_admin_companies\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"lcp_admin_leads>lcp_admin_sales\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:5:\"Sales\";s:10:\"menu_title\";s:5:\"Sales\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"lcp_admin_sales\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"lcp_admin_leads\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=lcp_admin_sales\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:36:\"lcp_admin_leads>lcp_admin_statistics\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:10:\"Statistics\";s:10:\"menu_title\";s:10:\"Statistics\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:20:\"lcp_admin_statistics\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"lcp_admin_leads\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:35:\"admin.php?page=lcp_admin_statistics\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:16:\"Lead Capture Pro\";s:10:\"menu_title\";s:16:\"Lead Capture Pro\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"lcp_admin_leads\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:38:\"menu-top toplevel_page_lcp_admin_leads\";s:8:\"hookname\";s:29:\"toplevel_page_lcp_admin_leads\";s:8:\"icon_url\";s:20:\"dashicons-chart-area\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=lcp_admin_leads\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:15:\"wp-support-plus\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:8;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:16:\">wp-support-plus\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:9:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"wp-support-plus>wp-support-plus\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"WP Support Plus\";s:10:\"menu_title\";s:12:\"Support Plus\";s:12:\"access_level\";s:26:\"manage_support_plus_ticket\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wp-support-plus\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wp-support-plus\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:35:\"wp-support-plus>wp-support-plus-faq\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"WP Support Plus FAQ\";s:10:\"menu_title\";s:3:\"FAQ\";s:12:\"access_level\";s:25:\"manage_support_plus_agent\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"wp-support-plus-faq\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:34:\"admin.php?page=wp-support-plus-faq\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:44:\"wp-support-plus>wp-support-plus-Canned-Reply\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:28:\"WP Support Plus Canned Reply\";s:10:\"menu_title\";s:12:\"Canned Reply\";s:12:\"access_level\";s:26:\"manage_support_plus_ticket\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:28:\"wp-support-plus-Canned-Reply\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:43:\"admin.php?page=wp-support-plus-Canned-Reply\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:42:\"wp-support-plus>wp-support-plus-statistics\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:26:\"WP Support Plus Statistics\";s:10:\"menu_title\";s:10:\"Statistics\";s:12:\"access_level\";s:25:\"manage_support_plus_agent\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:26:\"wp-support-plus-statistics\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:41:\"admin.php?page=wp-support-plus-statistics\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:40:\"wp-support-plus>wp-support-plus-settings\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:24:\"WP Support Plus Settings\";s:10:\"menu_title\";s:8:\"Settings\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:24:\"wp-support-plus-settings\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:39:\"admin.php?page=wp-support-plus-settings\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:49:\"wp-support-plus>wp-support-plus-advanced-settings\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:33:\"WP Support Plus Advanced Settings\";s:10:\"menu_title\";s:17:\"Advanced Settings\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:33:\"wp-support-plus-advanced-settings\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:48:\"admin.php?page=wp-support-plus-advanced-settings\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:47:\"wp-support-plus>wp-support-plus-email-templates\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:31:\"WP Support Plus Email Templates\";s:10:\"menu_title\";s:15:\"Email Templates\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:31:\"wp-support-plus-email-templates\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:46:\"admin.php?page=wp-support-plus-email-templates\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:39:\"wp-support-plus>wp-support-plus-add-ons\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:23:\"WP Support Plus Add-ons\";s:10:\"menu_title\";s:7:\"Add-ons\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:23:\"wp-support-plus-add-ons\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:38:\"admin.php?page=wp-support-plus-add-ons\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:8;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:8;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:39:\"wp-support-plus>wp-support-plus-support\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:23:\"WP Support Plus Support\";s:10:\"menu_title\";s:13:\"Doc & Support\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:23:\"wp-support-plus-support\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wp-support-plus\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:38:\"admin.php?page=wp-support-plus-support\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"WP Support Plus\";s:10:\"menu_title\";s:12:\"Support Plus\";s:12:\"access_level\";s:26:\"manage_support_plus_ticket\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wp-support-plus\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:38:\"menu-top toplevel_page_wp-support-plus\";s:8:\"hookname\";s:29:\"toplevel_page_wp-support-plus\";s:8:\"icon_url\";s:111:\"http://www.rasburytech.com/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/images/support.png\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wp-support-plus\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:11:\"separator_4\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:9;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:1;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:12:\">separator_4\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:0:\"\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"separator_4\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:17:\"wp-menu-separator\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:1;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:0:\"\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:10:\"themes.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:10;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:11:\">themes.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:11:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:21:\"themes.php>themes.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:6:\"Themes\";s:12:\"access_level\";s:13:\"switch_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"themes.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"themes.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"themes.php>customize.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:9:\"Customize\";s:12:\"access_level\";s:9:\"customize\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:183:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:20:\"hide-if-no-customize\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:183:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:22:\"themes.php>widgets.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Widgets\";s:12:\"access_level\";s:18:\"edit_theme_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"widgets.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:11:\"widgets.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"themes.php>nav-menus.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Menus\";s:12:\"access_level\";s:18:\"edit_theme_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"nav-menus.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:13:\"nav-menus.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:65:\"themes.php>customize.php?#038;autofocus%5Bcontrol%5D=header_image\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:6:\"Header\";s:12:\"access_level\";s:13:\"switch_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:224:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php&#038;autofocus%5Bcontrol%5D=header_image\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:20:\"hide-if-no-customize\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:219:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php&autofocus%5Bcontrol%5D=header_image\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:69:\"themes.php>customize.php?#038;autofocus%5Bcontrol%5D=background_image\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:10:\"Background\";s:12:\"access_level\";s:13:\"switch_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:228:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php&#038;autofocus%5Bcontrol%5D=background_image\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:20:\"hide-if-no-customize\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:223:\"customize.php?return=%2Fwp-admin%2Foptions-general.php%3Fpage%3Dmenu_editor%26selected_actor%3Drole%253Alcp_member%26selected_menu_url%3Dusers.php%26selected_submenu_url%3Dprofile.php&autofocus%5Bcontrol%5D=background_image\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:32:\"themes.php>simple-custom-css.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:17:\"Simple Custom CSS\";s:10:\"menu_title\";s:10:\"Custom CSS\";s:12:\"access_level\";s:18:\"edit_theme_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:21:\"simple-custom-css.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:37:\"themes.php?page=simple-custom-css.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:26:\"themes.php>404pagesettings\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:14:\"404 Error Page\";s:10:\"menu_title\";s:14:\"404 Error Page\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"404pagesettings\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:31:\"themes.php?page=404pagesettings\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:8;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:8;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"themes.php>custom-header\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:6:\"Header\";s:10:\"menu_title\";s:6:\"Header\";s:12:\"access_level\";s:18:\"edit_theme_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"custom-header\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"themes.php?page=custom-header\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:9;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:9;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:28:\"themes.php>custom-background\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:10:\"Background\";s:10:\"menu_title\";s:10:\"Background\";s:12:\"access_level\";s:18:\"edit_theme_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"custom-background\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:33:\"themes.php?page=custom-background\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:10;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:10;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"themes.php>theme-editor.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:6:\"Editor\";s:10:\"menu_title\";s:6:\"Editor\";s:12:\"access_level\";s:11:\"edit_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:16:\"theme-editor.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:10:\"themes.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:16:\"theme-editor.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:10:\"Appearance\";s:12:\"access_level\";s:13:\"switch_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"themes.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:29:\"menu-top menu-icon-appearance\";s:8:\"hookname\";s:15:\"menu-appearance\";s:8:\"icon_url\";s:26:\"dashicons-admin-appearance\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"themes.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:11:\"plugins.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:11;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:12:\">plugins.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:4:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"plugins.php>plugins.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:17:\"Installed Plugins\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"plugins.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"plugins.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:11:\"plugins.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"plugins.php>plugin-install.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Add New\";s:12:\"access_level\";s:15:\"install_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:18:\"plugin-install.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"plugins.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:18:\"plugin-install.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:29:\"plugins.php>plugin-editor.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:6:\"Editor\";s:12:\"access_level\";s:12:\"edit_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"plugin-editor.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"plugins.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:17:\"plugin-editor.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"plugins.php>so-widgets-plugins\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:18:\"SiteOrigin Widgets\";s:10:\"menu_title\";s:18:\"SiteOrigin Widgets\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:18:\"so-widgets-plugins\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:11:\"plugins.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:35:\"plugins.php?page=so-widgets-plugins\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:87:\"Plugins <span class=\'update-plugins count-0\'><span class=\'plugin-count\'>0</span></span>\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"plugins.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:26:\"menu-top menu-icon-plugins\";s:8:\"hookname\";s:12:\"menu-plugins\";s:8:\"icon_url\";s:23:\"dashicons-admin-plugins\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:11:\"plugins.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:9:\"users.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:12;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:10:\">users.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:3:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:19:\"users.php>users.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:9:\"All Users\";s:12:\"access_level\";s:10:\"list_users\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"users.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"users.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"users.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:22:\"users.php>user-new.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Add New\";s:12:\"access_level\";s:12:\"create_users\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"user-new.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"users.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:12:\"user-new.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:32:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:21:\"users.php>profile.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:2:{s:15:\"role:lcp_member\";b:1;s:14:\"role:affiliate\";b:1;}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:12:\"Your Profile\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"profile.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"users.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:11:\"profile.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}s:29:\"required_capability_read_only\";N;}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Users\";s:12:\"access_level\";s:10:\"list_users\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"users.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:24:\"menu-top menu-icon-users\";s:8:\"hookname\";s:10:\"menu-users\";s:8:\"icon_url\";s:21:\"dashicons-admin-users\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"users.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:9:\"tools.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:13;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:10:\">tools.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:8:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:19:\"tools.php>tools.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:15:\"Available Tools\";s:12:\"access_level\";s:10:\"edit_posts\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"tools.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"tools.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:20:\"tools.php>import.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:6:\"Import\";s:12:\"access_level\";s:6:\"import\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"import.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"import.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:20:\"tools.php>export.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:6:\"Export\";s:12:\"access_level\";s:6:\"export\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"export.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:10:\"export.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"tools.php>wp-autoloader\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:13:\"WP Autoloader\";s:10:\"menu_title\";s:10:\"Autoloader\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"wp-autoloader\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"tools.php?page=wp-autoloader\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"tools.php>view-php-info\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:8:\"PHP Info\";s:10:\"menu_title\";s:8:\"PHP info\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"view-php-info\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"tools.php?page=view-php-info\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:36:\"tools.php>real-time-find-and-replace\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:26:\"Real-Time Find and Replace\";s:10:\"menu_title\";s:26:\"Real-Time Find and Replace\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:26:\"real-time-find-and-replace\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:41:\"tools.php?page=real-time-find-and-replace\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"tools.php>string-locator\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:14:\"String Locator\";s:10:\"menu_title\";s:14:\"String Locator\";s:12:\"access_level\";s:11:\"edit_themes\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:14:\"string-locator\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"tools.php?page=string-locator\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:32:\"tools.php>disable_comments_tools\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"Delete Comments\";s:10:\"menu_title\";s:15:\"Delete Comments\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:22:\"disable_comments_tools\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"tools.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:37:\"tools.php?page=disable_comments_tools\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Tools\";s:12:\"access_level\";s:10:\"edit_posts\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"tools.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:24:\"menu-top menu-icon-tools\";s:8:\"hookname\";s:10:\"menu-tools\";s:8:\"icon_url\";s:21:\"dashicons-admin-tools\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:9:\"tools.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:19:\"options-general.php\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:14;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:20:\">options-general.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:14:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:39:\"options-general.php>options-general.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"General\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"options-general.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:19:\"options-general.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:39:\"options-general.php>options-writing.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Writing\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"options-writing.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:19:\"options-writing.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:39:\"options-general.php>options-reading.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:7:\"Reading\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"options-reading.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:19:\"options-reading.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:37:\"options-general.php>options-media.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:5:\"Media\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"options-media.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:17:\"options-media.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:41:\"options-general.php>options-permalink.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:10:\"Permalinks\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:21:\"options-permalink.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:21:\"options-permalink.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:40:\"options-general.php>wplogin_redirect.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:22:\"Login/logout redirects\";s:10:\"menu_title\";s:22:\"Login/logout redirects\";s:12:\"access_level\";s:17:\"manage_categories\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:20:\"wplogin_redirect.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:45:\"options-general.php?page=wplogin_redirect.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:35:\"options-general.php>call-now-button\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"Call Now Button\";s:10:\"menu_title\";s:15:\"Call Now Button\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"call-now-button\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:40:\"options-general.php?page=call-now-button\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:38:\"options-general.php>CaptainFormOptions\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"CaptainForm Options\";s:10:\"menu_title\";s:11:\"CaptainForm\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:18:\"CaptainFormOptions\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:43:\"options-general.php?page=CaptainFormOptions\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:8;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:8;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:54:\"options-general.php>erident-custom-login-and-dashboard\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:26:\"Custom Login and Dashboard\";s:10:\"menu_title\";s:26:\"Custom Login and Dashboard\";s:12:\"access_level\";s:13:\"administrator\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:34:\"erident-custom-login-and-dashboard\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:59:\"options-general.php?page=erident-custom-login-and-dashboard\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:9;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:9;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:37:\"options-general.php>siteorigin_panels\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:23:\"SiteOrigin Page Builder\";s:10:\"menu_title\";s:12:\"Page Builder\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"siteorigin_panels\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:42:\"options-general.php?page=siteorigin_panels\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:10;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:10;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:41:\"options-general.php>wp-simple-mail-sender\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:31:\"WP Simple Email Sender Settings\";s:10:\"menu_title\";s:15:\"WP Single Email\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:21:\"wp-simple-mail-sender\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:46:\"options-general.php?page=wp-simple-mail-sender\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:11;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:11;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:40:\"options-general.php>lead-capture-pro.php\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:16:\"Lead Capture Pro\";s:10:\"menu_title\";s:16:\"Lead Capture Pro\";s:12:\"access_level\";s:7:\"level_9\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:20:\"lead-capture-pro.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:45:\"options-general.php?page=lead-capture-pro.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:12;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:12;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:45:\"options-general.php>disable_comments_settings\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:16:\"Disable Comments\";s:10:\"menu_title\";s:16:\"Disable Comments\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:25:\"disable_comments_settings\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:50:\"options-general.php?page=disable_comments_settings\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:13;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:13;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"options-general.php>menu_editor\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:15:\"Menu Editor Pro\";s:10:\"menu_title\";s:15:\"Menu Editor Pro\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"menu_editor\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:19:\"options-general.php\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:36:\"options-general.php?page=menu_editor\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:8:\"Settings\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:19:\"options-general.php\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:27:\"menu-top menu-icon-settings\";s:8:\"hookname\";s:13:\"menu-settings\";s:8:\"icon_url\";s:24:\"dashicons-admin-settings\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:19:\"options-general.php\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:11:\"separator_5\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:15;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:1;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:12:\">separator_5\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:0:\"\";s:10:\"menu_title\";s:0:\"\";s:12:\"access_level\";s:4:\"read\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"separator_5\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:17:\"wp-menu-separator\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:1;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:0:\"\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:15:\"wpseo_dashboard\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:16;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:16:\">wpseo_dashboard\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:8:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"wpseo_dashboard>wpseo_dashboard\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"General - Yoast SEO\";s:10:\"menu_title\";s:9:\"Dashboard\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wpseo_dashboard\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wpseo_dashboard\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:28:\"wpseo_dashboard>wpseo_titles\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:30:\"Titles &amp; Metas - Yoast SEO\";s:10:\"menu_title\";s:18:\"Titles &amp; Metas\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"wpseo_titles\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"admin.php?page=wpseo_titles\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:28:\"wpseo_dashboard>wpseo_social\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:18:\"Social - Yoast SEO\";s:10:\"menu_title\";s:6:\"Social\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"wpseo_social\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"admin.php?page=wpseo_social\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:25:\"wpseo_dashboard>wpseo_xml\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:24:\"XML Sitemaps - Yoast SEO\";s:10:\"menu_title\";s:12:\"XML Sitemaps\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"wpseo_xml\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:24:\"admin.php?page=wpseo_xml\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"wpseo_dashboard>wpseo_advanced\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:20:\"Advanced - Yoast SEO\";s:10:\"menu_title\";s:8:\"Advanced\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:14:\"wpseo_advanced\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"admin.php?page=wpseo_advanced\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"wpseo_dashboard>wpseo_tools\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:17:\"Tools - Yoast SEO\";s:10:\"menu_title\";s:5:\"Tools\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"wpseo_tools\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:26:\"admin.php?page=wpseo_tools\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:36:\"wpseo_dashboard>wpseo_search_console\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:26:\"Search Console - Yoast SEO\";s:10:\"menu_title\";s:14:\"Search Console\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:20:\"wpseo_search_console\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:35:\"admin.php?page=wpseo_search_console\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"wpseo_dashboard>wpseo_licenses\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"Premium - Yoast SEO\";s:10:\"menu_title\";s:7:\"Premium\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:14:\"wpseo_licenses\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:15:\"wpseo_dashboard\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"admin.php?page=wpseo_licenses\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:20:\"Yoast SEO: Dashboard\";s:10:\"menu_title\";s:157:\"SEO <span class=\"update-plugins count-0\"><span class=\"plugin-count\" aria-hidden=\"true\">0</span><span class=\"screen-reader-text\">0 notifications</span></span>\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"wpseo_dashboard\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:38:\"menu-top toplevel_page_wpseo_dashboard\";s:8:\"hookname\";s:29:\"toplevel_page_wpseo_dashboard\";s:8:\"icon_url\";s:1110:\"data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6IzgyODc4YyIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxnPjxnPjxnPjxnPjxwYXRoIGQ9Ik0yMDMuNiwzOTVjNi44LTE3LjQsNi44LTM2LjYsMC01NGwtNzkuNC0yMDRoNzAuOWw0Ny43LDE0OS40bDc0LjgtMjA3LjZIMTE2LjRjLTQxLjgsMC03NiwzNC4yLTc2LDc2VjM1N2MwLDQxLjgsMzQuMiw3Niw3Niw3NkgxNzNDMTg5LDQyNC4xLDE5Ny42LDQxMC4zLDIwMy42LDM5NXoiLz48L2c+PGc+PHBhdGggZD0iTTQ3MS42LDE1NC44YzAtNDEuOC0zNC4yLTc2LTc2LTc2aC0zTDI4NS43LDM2NWMtOS42LDI2LjctMTkuNCw0OS4zLTMwLjMsNjhoMjE2LjJWMTU0Ljh6Ii8+PC9nPjwvZz48cGF0aCBzdHJva2Utd2lkdGg9IjIuOTc0IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGQ9Ik0zMzgsMS4zbC05My4zLDI1OS4xbC00Mi4xLTEzMS45aC04OS4xbDgzLjgsMjE1LjJjNiwxNS41LDYsMzIuNSwwLDQ4Yy03LjQsMTktMTksMzcuMy01Myw0MS45bC03LjIsMXY3Nmg4LjNjODEuNywwLDExOC45LTU3LjIsMTQ5LjYtMTQyLjlMNDMxLjYsMS4zSDMzOHogTTI3OS40LDM2MmMtMzIuOSw5Mi02Ny42LDEyOC43LTEyNS43LDEzMS44di00NWMzNy41LTcuNSw1MS4zLTMxLDU5LjEtNTEuMWM3LjUtMTkuMyw3LjUtNDAuNywwLTYwbC03NS0xOTIuN2g1Mi44bDUzLjMsMTY2LjhsMTA1LjktMjk0aDU4LjFMMjc5LjQsMzYyeiIvPjwvZz48L2c+PC9zdmc+\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=wpseo_dashboard\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:12:\"wp-cip-admin\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:17;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:13:\">wp-cip-admin\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:4:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:25:\"wp-cip-admin>wp-cip-admin\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:23:\"Country IP Redirections\";s:10:\"menu_title\";s:32:\"Country IP Specific Redirections\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"wp-cip-admin\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:12:\"wp-cip-admin\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"admin.php?page=wp-cip-admin\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"wp-cip-admin>wp-cip-log\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:24:\"Country Redirections LOG\";s:10:\"menu_title\";s:24:\"Country Redirections LOG\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:10:\"wp-cip-log\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:12:\"wp-cip-admin\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:25:\"admin.php?page=wp-cip-log\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"wp-cip-admin>wp-cip-mass\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:21:\"Country Mass Redirect\";s:10:\"menu_title\";s:21:\"Country Mass Redirect\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:11:\"wp-cip-mass\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:12:\"wp-cip-admin\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:26:\"admin.php?page=wp-cip-mass\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:30:\"wp-cip-admin>wp-cip-noredirect\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"Country NO Redirect\";s:10:\"menu_title\";s:19:\"Country NO Redirect\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"wp-cip-noredirect\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:12:\"wp-cip-admin\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:32:\"admin.php?page=wp-cip-noredirect\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:23:\"Country IP Redirections\";s:10:\"menu_title\";s:32:\"Country IP Specific Redirections\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"wp-cip-admin\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:35:\"menu-top toplevel_page_wp-cip-admin\";s:8:\"hookname\";s:26:\"toplevel_page_wp-cip-admin\";s:8:\"icon_url\";s:104:\"http://www.rasburytech.com/wp-content/plugins/country-ip-specific-redirections/bootstrap/images/icon.png\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"admin.php?page=wp-cip-admin\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:13:\"direct_stripe\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:18;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:14:\">direct_stripe\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:2:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:49:\"direct_stripe>edit.php?post_type=directstripelogs\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:18:\"Direct Stripe logs\";s:10:\"menu_title\";s:18:\"Direct Stripe logs\";s:12:\"access_level\";s:10:\"edit_pages\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:35:\"edit.php?post_type=directstripelogs\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:13:\"direct_stripe\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:35:\"edit.php?post_type=directstripelogs\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"direct_stripe>direct_stripe\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:8:\"Settings\";s:10:\"menu_title\";s:8:\"Settings\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"direct_stripe\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:13:\"direct_stripe\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"admin.php?page=direct_stripe\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:13:\"Direct Stripe\";s:10:\"menu_title\";s:13:\"Direct Stripe\";s:12:\"access_level\";s:14:\"manage_options\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"direct_stripe\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:36:\"menu-top toplevel_page_direct_stripe\";s:8:\"hookname\";s:27:\"toplevel_page_direct_stripe\";s:8:\"icon_url\";s:103:\"http://www.rasburytech.com/wp-content/plugins/direct-stripe/assets/admin/dist/img/logo_stripe_white.svg\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"admin.php?page=direct_stripe\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:9:\"loginizer\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:19;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:10:\">loginizer\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:3:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:19:\"loginizer>loginizer\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"Loginizer Dashboard\";s:10:\"menu_title\";s:9:\"Dashboard\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"loginizer\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"loginizer\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:24:\"admin.php?page=loginizer\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:31:\"loginizer>loginizer_brute_force\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:30:\"Loginizer Brute Force Settings\";s:10:\"menu_title\";s:11:\"Brute Force\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:21:\"loginizer_brute_force\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"loginizer\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:36:\"admin.php?page=loginizer_brute_force\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:47:\"loginizer>https:/loginizer.com/features#compare\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:16:\"Loginizer Go Pro\";s:10:\"menu_title\";s:6:\"Go Pro\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:37:\"https:/loginizer.com/features#compare\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"loginizer\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:0;s:6:\"custom\";b:0;s:3:\"url\";s:37:\"https:/loginizer.com/features#compare\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:19:\"Loginizer Dashboard\";s:10:\"menu_title\";s:18:\"Loginizer Security\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"loginizer\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:50:\"menu-top menu-icon-generic toplevel_page_loginizer\";s:8:\"hookname\";s:23:\"toplevel_page_loginizer\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:24:\"admin.php?page=loginizer\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}s:9:\"Wordfence\";a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:20;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:10:\">Wordfence\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:8:{i:0;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:0;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:19:\"Wordfence>Wordfence\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:9:\"Dashboard\";s:10:\"menu_title\";s:9:\"Dashboard\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"Wordfence\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:24:\"admin.php?page=Wordfence\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:1;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:1;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:23:\"Wordfence>WordfenceScan\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:4:\"Scan\";s:10:\"menu_title\";s:4:\"Scan\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:13:\"WordfenceScan\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:28:\"admin.php?page=WordfenceScan\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:2;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:2;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:22:\"Wordfence>WordfenceWAF\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:8:\"Firewall\";s:10:\"menu_title\";s:8:\"Firewall\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:12:\"WordfenceWAF\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:27:\"admin.php?page=WordfenceWAF\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:3;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:3;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"Wordfence>WordfenceBlocking\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:8:\"Blocking\";s:10:\"menu_title\";s:8:\"Blocking\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"WordfenceBlocking\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:32:\"admin.php?page=WordfenceBlocking\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:4;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:4;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:27:\"Wordfence>WordfenceActivity\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:12:\"Live Traffic\";s:10:\"menu_title\";s:12:\"Live Traffic\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:17:\"WordfenceActivity\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:32:\"admin.php?page=WordfenceActivity\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:5;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:5;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:24:\"Wordfence>WordfenceTools\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:5:\"Tools\";s:10:\"menu_title\";s:5:\"Tools\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:14:\"WordfenceTools\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:29:\"admin.php?page=WordfenceTools\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:6;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:6;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:25:\"Wordfence>WordfenceSecOpt\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:7:\"Options\";s:10:\"menu_title\";s:7:\"Options\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:15:\"WordfenceSecOpt\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:30:\"admin.php?page=WordfenceSecOpt\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}i:7;a:31:{s:10:\"page_title\";N;s:10:\"menu_title\";N;s:12:\"access_level\";N;s:16:\"extra_capability\";N;s:4:\"file\";N;s:12:\"page_heading\";N;s:8:\"position\";i:7;s:6:\"parent\";N;s:9:\"css_class\";N;s:8:\"hookname\";N;s:8:\"icon_url\";N;s:9:\"separator\";b:0;s:6:\"colors\";N;s:14:\"is_always_open\";N;s:7:\"open_in\";N;s:13:\"iframe_height\";N;s:11:\"template_id\";s:35:\"Wordfence>WordfenceUpgradeToPremium\";s:14:\"is_plugin_page\";N;s:6:\"custom\";b:0;s:3:\"url\";N;s:16:\"embedded_page_id\";N;s:21:\"embedded_page_blog_id\";N;s:5:\"items\";a:0:{}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:18:\"Upgrade To Premium\";s:10:\"menu_title\";s:78:\"<strong id=\"wfMenuCallout\" style=\"color: #FCB214;\">Upgrade To Premium</strong>\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:25:\"WordfenceUpgradeToPremium\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";s:9:\"Wordfence\";s:9:\"css_class\";s:0:\"\";s:8:\"hookname\";s:0:\"\";s:8:\"icon_url\";s:23:\"dashicons-admin-generic\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:40:\"admin.php?page=WordfenceUpgradeToPremium\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:12:\"grant_access\";a:0:{}s:7:\"missing\";b:0;s:6:\"unused\";b:0;s:6:\"hidden\";b:0;s:17:\"hidden_from_actor\";a:0:{}s:24:\"restrict_access_to_items\";b:0;s:24:\"had_access_before_hiding\";N;s:8:\"defaults\";a:20:{s:10:\"page_title\";s:9:\"Wordfence\";s:10:\"menu_title\";s:165:\"Wordfence <span class=\'update-plugins wf-menu-badge wf-notification-count-container\' title=\'2\'><span class=\'update-count wf-notification-count-value\'>2</span></span>\";s:12:\"access_level\";s:16:\"activate_plugins\";s:16:\"extra_capability\";s:0:\"\";s:4:\"file\";s:9:\"Wordfence\";s:12:\"page_heading\";s:0:\"\";s:6:\"parent\";N;s:9:\"css_class\";s:32:\"menu-top toplevel_page_Wordfence\";s:8:\"hookname\";s:23:\"toplevel_page_Wordfence\";s:8:\"icon_url\";s:87:\"http://www.rasburytech.com/wp-content/plugins/wordfence/images/wordfence-logo-16x16.png\";s:9:\"separator\";b:0;s:6:\"colors\";b:0;s:14:\"is_always_open\";b:0;s:7:\"open_in\";s:11:\"same_window\";s:13:\"iframe_height\";i:0;s:14:\"is_plugin_page\";b:1;s:6:\"custom\";b:0;s:3:\"url\";s:24:\"admin.php?page=Wordfence\";s:16:\"embedded_page_id\";i:0;s:21:\"embedded_page_blog_id\";i:1;}}}s:6:\"format\";a:3:{s:4:\"name\";s:22:\"Admin Menu Editor menu\";s:7:\"version\";s:3:\"7.0\";s:13:\"is_normalized\";b:1;}s:13:\"color_presets\";a:0:{}s:20:\"component_visibility\";a:0:{}s:22:\"has_modified_dashicons\";b:0;s:9:\"color_css\";s:0:\"\";s:18:\"color_css_modified\";i:0;}s:18:\"first_install_time\";i:1504748220;s:21:\"display_survey_notice\";b:1;s:17:\"plugin_db_version\";i:140;s:24:\"security_logging_enabled\";b:0;s:17:\"menu_config_scope\";s:6:\"global\";s:13:\"plugin_access\";s:14:\"manage_options\";s:15:\"allowed_user_id\";N;s:28:\"plugins_page_allowed_user_id\";N;s:27:\"show_deprecated_hide_button\";b:1;s:37:\"dashboard_hiding_confirmation_enabled\";b:1;s:21:\"submenu_icons_enabled\";s:9:\"if_custom\";s:22:\"force_custom_dashicons\";b:1;s:16:\"ui_colour_scheme\";s:7:\"classic\";s:13:\"visible_users\";a:0:{}s:23:\"show_plugin_menu_notice\";b:0;s:20:\"unused_item_position\";s:8:\"relative\";s:15:\"error_verbosity\";i:2;s:20:\"compress_custom_menu\";b:0;s:16:\"is_active_module\";a:1:{s:19:\"highlight-new-menus\";b:0;}}','yes'),(11409,'wsh_license_manager-admin-menu-editor-pro','a:4:{s:11:\"license_key\";N;s:10:\"site_token\";s:32:\"9QZO8E8S17KPQ9NXJMT1MQEQPLLP2371\";s:7:\"license\";a:7:{s:12:\"product_slug\";s:21:\"admin-menu-editor-pro\";s:6:\"status\";s:5:\"valid\";s:9:\"issued_on\";s:25:\"2017-09-07T01:42:33+00:00\";s:9:\"max_sites\";s:1:\"2\";s:10:\"expires_on\";s:25:\"2018-09-07T01:42:33+00:00\";s:8:\"site_url\";s:26:\"http://www.rasburytech.com\";s:11:\"renewal_url\";s:41:\"http://adminmenueditor.com/renew-license/\";}s:13:\"token_history\";a:1:{s:32:\"9QZO8E8S17KPQ9NXJMT1MQEQPLLP2371\";s:26:\"http://www.rasburytech.com\";}}','no'),(11410,'ame_pro_external_updates','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1516198520;s:14:\"checkedVersion\";s:5:\"2.5.1\";s:6:\"update\";O:8:\"stdClass\":9:{s:4:\"slug\";s:21:\"admin-menu-editor-pro\";s:7:\"version\";s:5:\"2.6.1\";s:12:\"download_url\";s:152:\"http://adminmenueditor.com/?get_product=admin-menu-editor-pro&license_token=9QZO8E8S17KPQ9NXJMT1MQEQPLLP2371&license_site_url=http://www.rasburytech.com\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:27:\"http://adminmenueditor.com/\";s:6:\"tested\";s:5:\"4.9.1\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:37:\"admin-menu-editor-pro/menu-editor.php\";}s:11:\"updateClass\";s:22:\"Puc_v4p1_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(12984,'_site_transient_browser_3d5f26438973a3d90b630a57c59a2f98','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.113\";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'),(13010,'_site_transient_timeout_browser_0f568b11a74d5c4fce6dae540063a05a','1507686389','no'),(13011,'_site_transient_browser_0f568b11a74d5c4fce6dae540063a05a','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"61.0.3163.100\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(16375,'_transient_timeout_sow:cleared','1516583925','no'),(16376,'_transient_sow:cleared','1','no'),(14631,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13576,'siteorigin_widgets_new_widgets','a:1:{i:18;s:100:\"/home/avidwe5/public_html/rasburytech.com/wp-content/plugins/so-widgets-bundle/widgets/tabs/tabs.php\";}','yes'),(13574,'wpseo_license_server_version','2','yes'),(13579,'widget_sow-cta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13583,'widget_sow-image-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13584,'widget_sow-price-table','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13585,'widget_sow-video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(13556,'_site_transient_browser_a9db4d03969fdd98d377b682b063efe6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"61.0.3163.100\";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'),(13563,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1508071479','no'),(13564,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1508028279','no'),(10912,'_transient_timeout_settings_errors','1507091253','no'),(10913,'_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:\"updated\";}}','no'),(10753,'_transient_timeout_geoip_172.77.95.68','1504644373','no'),(10754,'_transient_geoip_172.77.95.68','US','no'),(10764,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10645,'woocommerce_calc_taxes','yes','yes'),(10646,'woocommerce_demo_store','no','yes'),(10647,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','no'),(10648,'woocommerce_currency','USD','yes'),(10649,'woocommerce_currency_pos','left','yes'),(10650,'woocommerce_price_thousand_sep',',','yes'),(10651,'woocommerce_price_decimal_sep','.','yes'),(10652,'woocommerce_price_num_decimals','2','yes'),(10653,'woocommerce_weight_unit','lbs','yes'),(10654,'woocommerce_dimension_unit','in','yes'),(10655,'woocommerce_enable_reviews','yes','yes'),(10656,'woocommerce_review_rating_verification_label','yes','no'),(10657,'woocommerce_review_rating_verification_required','no','no'),(10658,'woocommerce_enable_review_rating','yes','yes'),(10659,'woocommerce_review_rating_required','yes','no'),(10660,'woocommerce_shop_page_id','735','yes'),(10661,'woocommerce_shop_page_display','','yes'),(10662,'woocommerce_category_archive_display','','yes'),(10663,'woocommerce_default_catalog_orderby','menu_order','yes'),(10664,'woocommerce_cart_redirect_after_add','no','yes'),(10665,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(10666,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";i:1;}','yes'),(10667,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";i:1;}','yes'),(10668,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}','yes'),(10669,'woocommerce_manage_stock','yes','yes'),(10670,'woocommerce_hold_stock_minutes','60','no'),(10671,'woocommerce_notify_low_stock','yes','no'),(10672,'woocommerce_notify_no_stock','yes','no'),(10673,'woocommerce_stock_email_recipient','admin@rasburytech.com','no'),(10674,'woocommerce_notify_low_stock_amount','2','no'),(10675,'woocommerce_notify_no_stock_amount','0','yes'),(10676,'woocommerce_hide_out_of_stock_items','no','yes'),(10677,'woocommerce_stock_format','','yes'),(10678,'woocommerce_file_download_method','force','no'),(10679,'woocommerce_downloads_require_login','no','no'),(10680,'woocommerce_downloads_grant_access_after_payment','yes','no'),(10681,'woocommerce_prices_include_tax','no','yes'),(10682,'woocommerce_tax_based_on','shipping','yes'),(10683,'woocommerce_shipping_tax_class','inherit','yes'),(10684,'woocommerce_tax_round_at_subtotal','no','yes'),(10685,'woocommerce_tax_classes','Reduced rate\nZero rate','yes'),(10686,'woocommerce_tax_display_shop','excl','yes'),(10687,'woocommerce_tax_display_cart','excl','no'),(10688,'woocommerce_price_display_suffix','','yes'),(10689,'woocommerce_tax_total_display','itemized','no'),(10690,'woocommerce_enable_shipping_calc','yes','no'),(10691,'woocommerce_shipping_cost_requires_address','no','no'),(10692,'woocommerce_ship_to_destination','billing','no'),(10693,'woocommerce_shipping_debug_mode','no','no'),(10694,'woocommerce_enable_coupons','yes','yes'),(10695,'woocommerce_calc_discounts_sequentially','no','no'),(10696,'woocommerce_enable_guest_checkout','yes','no'),(10697,'woocommerce_force_ssl_checkout','no','yes'),(10698,'woocommerce_unforce_ssl_checkout','no','yes'),(10699,'woocommerce_cart_page_id','736','yes'),(10700,'woocommerce_checkout_page_id','737','yes'),(10701,'woocommerce_terms_page_id','','no'),(10702,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(10703,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(10704,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(10705,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(10706,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(10707,'woocommerce_myaccount_page_id','738','yes'),(10708,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(10709,'woocommerce_enable_myaccount_registration','no','no'),(10710,'woocommerce_enable_checkout_login_reminder','yes','no'),(10711,'woocommerce_registration_generate_username','yes','no'),(10712,'woocommerce_registration_generate_password','no','no'),(10713,'woocommerce_myaccount_orders_endpoint','orders','yes'),(10714,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(10715,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(10716,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(10717,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(10718,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(10719,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(10720,'woocommerce_logout_endpoint','customer-logout','yes'),(10721,'woocommerce_email_from_name','RTS','no'),(10722,'woocommerce_email_from_address','admin@rasburytech.com','no'),(10723,'woocommerce_email_header_image','','no'),(10724,'woocommerce_email_footer_text','RTS - Powered by WooCommerce','no'),(10725,'woocommerce_email_base_color','#96588a','no'),(10726,'woocommerce_email_background_color','#f7f7f7','no'),(10727,'woocommerce_email_body_background_color','#ffffff','no'),(10728,'woocommerce_email_text_color','#3c3c3c','no'),(10729,'woocommerce_api_enabled','yes','yes'),(10752,'woocommerce_meta_box_errors','a:0:{}','yes'),(10756,'_transient_timeout__woocommerce_helper_subscriptions','1504040530','no'),(10733,'woocommerce_db_version','3.1.2','yes'),(10734,'woocommerce_version','3.1.2','yes'),(1727,'wpseo_sitemap_163_cache_validator','jqO9','no'),(1728,'wpseo_sitemap_168_cache_validator','jqOc','no'),(1729,'wpseo_sitemap_169_cache_validator','jqOk','no'),(1730,'wpseo_sitemap_220_cache_validator','jqOm','no'),(1731,'wpseo_sitemap_221_cache_validator','jqOq','no'),(1921,'wpsp_remove_faulty_indexes','1','yes'),(1922,'wp_support_plus_version','8.0.8','yes'),(1923,'wpsp_add_table_indexes','1','yes'),(1924,'wpsp_repair_faulty_indexes','1','yes'),(1925,'wpsp_general_settings','a:27:{s:7:\"post_id\";s:1:\"0\";s:21:\"enable_support_button\";s:1:\"0\";s:23:\"support_button_position\";s:11:\"bottom_left\";s:19:\"enable_guest_ticket\";s:1:\"1\";s:18:\"enable_slider_menu\";s:1:\"1\";s:13:\"support_title\";s:10:\"Need Help?\";s:20:\"support_phone_number\";s:14:\"(260) 492-2166\";s:18:\"display_skype_chat\";s:1:\"0\";s:18:\"display_skype_call\";s:1:\"0\";s:23:\"default_ticket_category\";s:1:\"1\";s:20:\"enable_default_login\";s:1:\"0\";s:36:\"enable_user_selection_public_private\";s:1:\"0\";s:19:\"default_ticket_type\";s:1:\"0\";s:30:\"allow_agents_to_assign_tickets\";s:1:\"0\";s:30:\"allow_agents_to_delete_tickets\";s:1:\"0\";s:33:\"allow_attachment_for_guest_ticket\";s:1:\"0\";s:30:\"ticket_status_after_cust_reply\";s:7:\"default\";s:20:\"front_end_submission\";s:1:\"0\";s:25:\"default_new_ticket_status\";s:1:\"1\";s:20:\"default_login_module\";s:1:\"1\";s:27:\"close_ticket_btn_status_val\";s:0:\"\";s:15:\"close_btn_alice\";s:12:\"Close Ticket\";s:26:\"enable_register_guest_user\";s:1:\"0\";s:15:\"guest_user_role\";s:10:\"subscriber\";s:28:\"allow_agents_to_edit_tickets\";i:1;s:28:\"wpsp_display_deleted_tickets\";i:0;s:31:\"wpsp_delete_tickets_permanantly\";i:1;}','yes'),(1926,'wpsp_email_notification_settings','a:15:{s:18:\"default_from_email\";s:23:\"support@rasburytech.com\";s:17:\"default_from_name\";s:13:\"RTS - Support\";s:16:\"default_reply_to\";s:25:\"m.rasbury@rasburytech.com\";s:20:\"administrator_emails\";s:25:\"m.rasbury@rasburytech.com\";s:17:\"enable_email_pipe\";s:1:\"0\";s:11:\"piping_type\";s:6:\"cpanel\";s:13:\"ignore_emails\";s:0:\"\";s:24:\"agent_email_notification\";i:1;s:19:\"agent_silent_create\";i:0;s:15:\"imap_encryption\";s:4:\"none\";s:11:\"imap_server\";s:0:\"\";s:9:\"imap_port\";s:0:\"\";s:13:\"imap_username\";s:0:\"\";s:13:\"imap_password\";s:0:\"\";s:22:\"imap_connection_status\";i:0;}','yes'),(1927,'wpsp_role_management','a:4:{s:6:\"agents\";a:0:{}s:11:\"supervisors\";a:0:{}s:16:\"front_ticket_all\";b:1;s:12:\"front_ticket\";a:3:{i:0;s:13:\"administrator\";i:1;s:21:\"wp_support_plus_agent\";i:2;s:26:\"wp_support_plus_supervisor\";}}','yes'),(1928,'wpsp_customcss_settings','','yes'),(1929,'wpsp_advanced_settings','a:28:{s:31:\"guest_ticket_submission_message\";s:70:\"Thank You. We will shortly get back to you on your given mail address!\";s:20:\"pending_ticket_close\";s:0:\"\";s:18:\"ticket_label_alice\";a:21:{i:0;s:0:\"\";i:1;s:6:\"Ticket\";i:2;s:7:\"Tickets\";i:3;s:17:\"Create New Ticket\";i:4;s:20:\"Ticket List Settings\";i:5;s:16:\"Create Ticket As\";i:6;s:18:\"Make Ticket Public\";i:7;s:13:\"Submit Ticket\";i:8;s:11:\"Edit Ticket\";i:9;s:12:\"Reply Ticket\";i:10;s:13:\"Delete Ticket\";i:11;s:11:\"Ticket Type\";i:12;s:14:\"No. of Tickets\";i:13;s:14:\"Ticket Creator\";i:14;s:27:\"Create Ticket Success Email\";i:15;s:32:\"Delete Ticket Notification Email\";i:16;s:22:\"New Ticket From Thread\";i:17;s:15:\"Back to Tickets\";i:18;s:26:\"Backend Ticket List Fields\";i:19;s:27:\"Frontend Ticket List Fields\";i:20;s:16:\"No Tickets Found\";}s:24:\"wpsp_reply_form_position\";s:1:\"1\";s:22:\"wpsp_shortcode_used_in\";s:1:\"0\";s:16:\"enable_accordion\";i:1;s:36:\"hide_selected_status_ticket_frontend\";a:0:{}s:35:\"hide_selected_status_ticket_backend\";a:0:{}s:16:\"modify_raised_by\";a:0:{}s:25:\"wpsp_dashboard_menu_label\";s:12:\"Support Plus\";s:15:\"logout_Settings\";s:1:\"1\";s:17:\"admin_bar_Setting\";s:1:\"1\";s:8:\"ticketId\";s:1:\"1\";s:21:\"wpsp_ticket_id_prefix\";s:1:\"#\";s:11:\"reply_above\";s:1:\"1\";s:13:\"datecustfield\";s:8:\"mm-dd-yy\";s:10:\"active_tab\";s:1:\"1\";s:21:\"guest_ticket_redirect\";s:1:\"0\";s:25:\"guest_ticket_redirect_url\";s:0:\"\";s:22:\"message_for_ticket_url\";s:0:\"\";s:33:\"wpsp_redirect_after_ticket_update\";s:1:\"1\";s:21:\"wpspAttachMaxFileSize\";s:2:\"20\";s:23:\"wpspBootstrapCSSSetting\";s:1:\"1\";s:22:\"wpspBootstrapJSSetting\";s:1:\"1\";s:28:\"wpsp_attachment_download_url\";s:1:\"1\";s:17:\"wpspAttachment_bc\";s:7:\"#1aaf1c\";s:17:\"wpspAttachment_pc\";s:7:\"#ff0000\";s:27:\"hide_selected_status_ticket\";s:4:\"none\";}','yes'),(1930,'wpsp_shortcode_used_in_settings','1','yes'),(1931,'wpsp_advanced_settings_field_order','a:4:{s:12:\"fields_order\";a:7:{i:0;s:2:\"dn\";i:1;s:2:\"de\";i:2;s:2:\"ds\";i:3;s:2:\"dd\";i:4;s:2:\"dc\";i:5;s:2:\"dp\";i:6;s:2:\"da\";}s:14:\"display_fields\";a:7:{i:0;s:2:\"dn\";i:1;s:2:\"de\";i:2;s:2:\"ds\";i:3;s:2:\"dd\";i:4;s:2:\"dc\";i:5;s:2:\"dp\";i:6;s:2:\"da\";}s:20:\"default_fields_label\";a:7:{s:2:\"dn\";s:4:\"Name\";s:2:\"de\";s:13:\"Email Address\";s:2:\"ds\";s:7:\"Subject\";s:2:\"dd\";s:11:\"Description\";s:2:\"dc\";s:8:\"Category\";s:2:\"dp\";s:8:\"Priority\";s:2:\"da\";s:11:\"Attachments\";}s:29:\"wpsp_default_value_of_subject\";s:2:\"NA\";}','yes'),(1932,'wpsp_advanced_settings_status_order','a:1:{s:12:\"status_order\";a:3:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";}}','yes'),(1933,'wpsp_advanced_settings_priority_order','a:1:{s:14:\"priority_order\";a:4:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"4\";}}','yes'),(1934,'wpsp_advanced_settings_ticket_list_order','a:2:{s:19:\"backend_ticket_list\";a:12:{s:2:\"id\";i:1;s:2:\"st\";i:1;s:2:\"sb\";i:1;s:2:\"rb\";i:1;s:2:\"ty\";i:1;s:2:\"ct\";i:1;s:2:\"at\";i:1;s:2:\"pt\";i:1;s:2:\"ut\";i:1;s:3:\"cdt\";i:0;s:3:\"udt\";i:0;s:3:\"acd\";i:0;}s:20:\"frontend_ticket_list\";a:10:{s:2:\"id\";i:1;s:2:\"st\";i:1;s:2:\"sb\";i:1;s:2:\"ct\";i:1;s:2:\"at\";i:1;s:2:\"pt\";i:1;s:2:\"ut\";i:1;s:3:\"cdt\";i:0;s:3:\"udt\";i:0;s:2:\"rb\";i:1;}}','yes'),(1935,'wpsp_ticket_list_date_format','a:4:{s:11:\"cdt_backend\";s:0:\"\";s:11:\"udt_backend\";s:0:\"\";s:12:\"cdt_frontend\";s:0:\"\";s:12:\"udt_frontend\";s:0:\"\";}','yes'),(1936,'wpsp_advanced_settings_custom_filter_front','a:3:{s:9:\"logged_in\";a:4:{i:0;s:2:\"st\";i:1;s:2:\"ct\";i:2;s:3:\"not\";i:3;s:2:\"tt\";}s:15:\"agent_logged_in\";a:4:{i:0;s:2:\"st\";i:1;s:2:\"ct\";i:2;s:3:\"not\";i:3;s:2:\"tt\";}s:20:\"supervisor_logged_in\";a:4:{i:0;s:2:\"st\";i:1;s:2:\"ct\";i:2;s:3:\"not\";i:3;s:2:\"tt\";}}','yes'),(1937,'wpsp_ticket_list_subject_char_length','a:2:{s:8:\"frontend\";s:2:\"20\";s:7:\"backend\";s:2:\"20\";}','yes'),(1938,'wpsp_et_create_new_ticket','a:7:{s:14:\"enable_success\";s:1:\"1\";s:15:\"success_subject\";s:41:\"Your Ticket has been created successfully\";s:12:\"success_body\";s:373:\"Dear {customer_name},<br />\n								<br />\n								Thank you for contacting Support. Your ticket has been created Successfully!<br />\n								<br />\n								Below are details of your ticket -<br />\n								<br />\n								<strong>Subject:</strong> {ticket_subject}<br />\n								<strong>Description:</strong>\n								<p>{ticket_description}</p>\n								<br />\n								<br />\";s:13:\"staff_subject\";s:16:\"{ticket_subject}\";s:10:\"staff_body\";s:124:\"<strong>{customer_name} ({customer_email})</strong> wrote:\n								<p>{ticket_description}</p>\n								<br />\n								<br />\";s:9:\"templates\";a:10:{s:13:\"customer_name\";s:13:\"Customer Name\";s:14:\"customer_email\";s:14:\"Customer Email\";s:9:\"ticket_id\";s:9:\"Ticket ID\";s:14:\"ticket_subject\";s:14:\"Ticket Subject\";s:18:\"ticket_description\";s:18:\"Ticket Description\";s:15:\"ticket_category\";s:15:\"Ticket Category\";s:15:\"ticket_priority\";s:15:\"Ticket Priority\";s:10:\"ticket_url\";s:10:\"Ticket URL\";s:12:\"time_created\";s:14:\"Ticket Created\";s:13:\"agent_created\";s:13:\"Agent Created\";}s:15:\"staff_to_notify\";a:4:{s:13:\"administrator\";s:1:\"1\";s:10:\"supervisor\";s:1:\"1\";s:14:\"assigned_agent\";s:1:\"1\";s:10:\"all_agents\";s:1:\"0\";}}','yes'),(1939,'wpsp_et_reply_ticket','a:4:{s:13:\"reply_subject\";s:16:\"{ticket_subject}\";s:10:\"reply_body\";s:123:\"<strong>{reply_by_name} ({reply_by_email})</strong> wrote:\n								<p>{reply_description}</p>\n								<br />\n								<br />\";s:9:\"templates\";a:12:{s:13:\"reply_by_name\";s:13:\"Reply By Name\";s:14:\"reply_by_email\";s:14:\"Reply By Email\";s:13:\"ticket_status\";s:13:\"Ticket Status\";s:13:\"customer_name\";s:29:\"Customer Name(ticket creator)\";s:14:\"customer_email\";s:30:\"Customer Email(ticket creator)\";s:9:\"ticket_id\";s:9:\"Ticket ID\";s:14:\"ticket_subject\";s:14:\"Ticket Subject\";s:17:\"reply_description\";s:17:\"Reply Description\";s:15:\"ticket_category\";s:15:\"Ticket Category\";s:15:\"ticket_priority\";s:15:\"Ticket Priority\";s:10:\"ticket_url\";s:10:\"Ticket URL\";s:12:\"time_created\";s:14:\"Ticket Created\";}s:9:\"notify_to\";a:5:{s:8:\"customer\";s:1:\"1\";s:13:\"administrator\";s:1:\"1\";s:10:\"supervisor\";s:1:\"1\";s:14:\"assigned_agent\";s:1:\"1\";s:10:\"all_agents\";s:1:\"0\";}}','yes'),(1940,'wpsp_et_change_ticket_status','a:4:{s:9:\"notify_to\";a:5:{s:8:\"customer\";s:1:\"1\";s:13:\"administrator\";s:1:\"1\";s:10:\"supervisor\";s:1:\"1\";s:14:\"assigned_agent\";s:1:\"1\";s:10:\"all_agents\";s:1:\"0\";}s:12:\"mail_subject\";s:16:\"{ticket_subject}\";s:9:\"mail_body\";s:771:\"<strong>Below are details of ticket:</strong><br />\n                    <br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Subject:</strong> {ticket_subject}<br />\n                    <strong>Status:</strong> {ticket_status}<br />\n                    <strong>Category:</strong> {ticket_category}<br />\n                    <strong>Priority:</strong> {ticket_priority}<br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Description:</strong><br />\n                    {ticket_description}\";s:9:\"templates\";a:11:{s:13:\"customer_name\";s:29:\"Customer Name(ticket creator)\";s:14:\"customer_email\";s:30:\"Customer Email(ticket creator)\";s:9:\"ticket_id\";s:9:\"Ticket ID\";s:14:\"ticket_subject\";s:14:\"Ticket Subject\";s:18:\"ticket_description\";s:18:\"Ticket Description\";s:13:\"ticket_status\";s:13:\"Ticket Status\";s:15:\"ticket_category\";s:15:\"Ticket Category\";s:15:\"ticket_priority\";s:15:\"Ticket Priority\";s:10:\"ticket_url\";s:10:\"Ticket URL\";s:10:\"updated_by\";s:23:\"User who changed status\";s:12:\"time_created\";s:14:\"Ticket Created\";}}','yes'),(1941,'wpsp_et_change_ticket_assign_agent','a:4:{s:9:\"notify_to\";a:5:{s:8:\"customer\";s:1:\"1\";s:13:\"administrator\";s:1:\"1\";s:10:\"supervisor\";s:1:\"1\";s:14:\"assigned_agent\";s:1:\"1\";s:10:\"all_agents\";s:1:\"0\";}s:12:\"mail_subject\";s:49:\"{updated_by} assigned ticket to {new_assigned_to}\";s:9:\"mail_body\";s:853:\"<strong>Below are details of ticket:</strong><br />\n                    <br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Subject:</strong> {ticket_subject}<br />\n                    <strong>Status:</strong> {ticket_status}<br />\n                    <strong>Category:</strong> {ticket_category}<br />\n                    <strong>Priority:</strong> {ticket_priority}<br />\n                    <strong>Previously Assigned:</strong> {old_assigned_to}<br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Description:</strong><br />\n                    {ticket_description}\";s:9:\"templates\";a:13:{s:13:\"customer_name\";s:29:\"Customer Name(ticket creator)\";s:14:\"customer_email\";s:30:\"Customer Email(ticket creator)\";s:9:\"ticket_id\";s:9:\"Ticket ID\";s:14:\"ticket_subject\";s:14:\"Ticket Subject\";s:18:\"ticket_description\";s:18:\"Ticket Description\";s:13:\"ticket_status\";s:13:\"Ticket Status\";s:15:\"ticket_category\";s:15:\"Ticket Category\";s:15:\"ticket_priority\";s:15:\"Ticket Priority\";s:10:\"ticket_url\";s:10:\"Ticket URL\";s:10:\"updated_by\";s:24:\"User who assigned ticket\";s:15:\"old_assigned_to\";s:35:\"User to whom assigned ticket before\";s:15:\"new_assigned_to\";s:32:\"User to whom assigned ticket now\";s:12:\"time_created\";s:14:\"Ticket Created\";}}','yes'),(1942,'wpsp_et_delete_ticket','a:4:{s:9:\"notify_to\";a:5:{s:8:\"customer\";s:1:\"1\";s:13:\"administrator\";s:1:\"1\";s:10:\"supervisor\";s:1:\"1\";s:14:\"assigned_agent\";s:1:\"1\";s:10:\"all_agents\";s:1:\"0\";}s:12:\"mail_subject\";s:40:\"{updated_by} deleted ticket #{ticket_id}\";s:9:\"mail_body\";s:772:\"<strong>Below ware details of ticket:</strong><br />\n                    <br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Subject:</strong> {ticket_subject}<br />\n                    <strong>Status:</strong> {ticket_status}<br />\n                    <strong>Category:</strong> {ticket_category}<br />\n                    <strong>Priority:</strong> {ticket_priority}<br />\n                    ------------------------------------------------------------------------------------------------------------------------------------<br />\n                    <strong>Description:</strong><br />\n                    {ticket_description}\";s:9:\"templates\";a:10:{s:13:\"customer_name\";s:29:\"Customer Name(ticket creator)\";s:14:\"customer_email\";s:30:\"Customer Email(ticket creator)\";s:9:\"ticket_id\";s:9:\"Ticket ID\";s:14:\"ticket_subject\";s:14:\"Ticket Subject\";s:18:\"ticket_description\";s:18:\"Ticket Description\";s:13:\"ticket_status\";s:13:\"Ticket Status\";s:15:\"ticket_category\";s:15:\"Ticket Category\";s:15:\"ticket_priority\";s:15:\"Ticket Priority\";s:10:\"updated_by\";s:24:\"User who assigned ticket\";s:12:\"time_created\";s:14:\"Ticket Created\";}}','yes'),(1943,'wpsp_default_status_priority_names','a:2:{s:12:\"status_names\";a:3:{s:4:\"open\";s:4:\"open\";s:7:\"pending\";s:7:\"pending\";s:6:\"closed\";s:6:\"closed\";}s:14:\"priority_names\";a:4:{s:6:\"Normal\";s:6:\"Normal\";s:4:\"High\";s:4:\"High\";s:6:\"Medium\";s:6:\"Medium\";s:3:\"Low\";s:3:\"Low\";}}','yes'),(1944,'wpsp_ckeditor_settings','a:2:{s:14:\"guestUserFront\";s:1:\"1\";s:14:\"loginUserFront\";s:1:\"1\";}','yes'),(1945,'wpsp_upload_image_settings','a:3:{s:17:\"leftSupportButton\";s:123:\"http://www.rasburytech.com/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/images/support-button-left.png\";s:18:\"rightSupportButton\";s:124:\"http://www.rasburytech.com/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/images/support-button-right.png\";s:11:\"panel_image\";s:116:\"http://www.rasburytech.com/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/images/support_icon.jpg\";}','yes'),(1946,'wpsp_front_end_display_settings','a:45:{s:21:\"wpsp_hideBackToTicket\";i:1;s:20:\"wpsp_hideCloseTicket\";i:1;s:19:\"wpsp_hideMoreAction\";i:1;s:21:\"wpsp_hideChangeStatus\";i:1;s:20:\"wpsp_hideCannedReply\";i:1;s:20:\"wpsp_hideAssignAgent\";i:1;s:21:\"wpsp_hideDeleteTicket\";i:1;s:11:\"wpsp_hideCC\";i:1;s:12:\"wpsp_hideBCC\";i:1;s:15:\"wpsp_hideStatus\";i:1;s:17:\"wpsp_hideCategory\";i:1;s:17:\"wpsp_hidePriority\";i:1;s:20:\"wpsp_hideAttachments\";i:1;s:17:\"wpsp_hideAddNotes\";i:1;s:20:\"wpsp_hideSubmitReply\";i:1;s:14:\"wpsp_hideEmail\";i:1;s:26:\"wpsp_hideDaysMonthsYearAgo\";i:1;s:18:\"wpsp_hideExactDate\";i:1;s:18:\"wpsp_hideExactTime\";i:1;s:24:\"wpsp_faq_display_setting\";i:1;s:11:\"wpsp_btt_fc\";s:4:\"#fff\";s:11:\"wpsp_btt_bc\";s:7:\"#428bca\";s:10:\"wpsp_ct_fc\";s:4:\"#fff\";s:10:\"wpsp_ct_bc\";s:7:\"#428bca\";s:10:\"wpsp_ma_fc\";s:4:\"#fff\";s:10:\"wpsp_ma_bc\";s:7:\"#428bca\";s:10:\"wpsp_cs_fc\";s:4:\"#fff\";s:10:\"wpsp_cs_bc\";s:7:\"#428bca\";s:10:\"wpsp_cr_fc\";s:4:\"#fff\";s:10:\"wpsp_cr_bc\";s:7:\"#428bca\";s:10:\"wpsp_aa_fc\";s:4:\"#fff\";s:10:\"wpsp_aa_bc\";s:7:\"#428bca\";s:10:\"wpsp_dt_fc\";s:4:\"#fff\";s:10:\"wpsp_dt_bc\";s:7:\"#d43f3a\";s:10:\"wpsp_an_fc\";s:4:\"#fff\";s:10:\"wpsp_an_bc\";s:7:\"#428bca\";s:10:\"wpsp_sr_fc\";s:4:\"#fff\";s:10:\"wpsp_sr_bc\";s:7:\"#428bca\";s:23:\"front_end_display_alice\";a:14:{i:1;s:13:\"Change Status\";i:2;s:12:\"Canned Reply\";i:3;s:12:\"Assign Agent\";i:4;s:13:\"Delete Ticket\";i:5;s:2:\"CC\";i:6;s:3:\"BCC\";i:7;s:6:\"Status\";i:8;s:8:\"Category\";i:9;s:8:\"Priority\";i:10;s:11:\"Attachments\";i:11;s:9:\"Add Notes\";i:12;s:12:\"Submit Reply\";i:13;s:16:\"Change Raised By\";i:14;s:14:\"Restore Ticket\";}s:10:\"wpsp_cb_bc\";s:7:\"#428bca\";s:10:\"wpsp_cb_fc\";s:4:\"#fff\";s:19:\"wpsp_ChangeRaisedBy\";i:1;s:18:\"wpsp_restoreTicket\";i:1;s:10:\"wpsp_rt_bc\";s:7:\"#428bca\";s:10:\"wpsp_rt_fc\";s:4:\"#fff\";}','yes'),(1947,'wpsp_attachment_random_key','1','yes'),(3040,'wpseo_sitemap_captainform_post_cache_validator','5BTeh','no'),(2502,'wpseo_sitemap_333_cache_validator','6pPWX','no');
/*!40000 ALTER TABLE `wpiq_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiq_postmeta`
--

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

--
-- Dumping data for table `wpiq_postmeta`
--

LOCK TABLES `wpiq_postmeta` WRITE;
/*!40000 ALTER TABLE `wpiq_postmeta` DISABLE KEYS */;
INSERT INTO `wpiq_postmeta` VALUES (2,4,'_edit_last','1'),(3,4,'_edit_lock','1508341520:1'),(4,4,'_wp_page_template','page-templates/full-width-page.php'),(14,11,'_edit_last','1'),(15,11,'_edit_lock','1505425376:1'),(16,11,'_wp_page_template','page-templates/full-width-page.php'),(34,20,'_edit_last','1'),(35,20,'_edit_lock','1505526747:1'),(36,20,'_wp_page_template','page-templates/full-width-page.php'),(81,47,'_edit_last','1'),(82,47,'_edit_lock','1495402419:1'),(83,47,'_wp_page_template','page-templates/full-width-page.php'),(113,67,'_edit_last','1'),(114,67,'_edit_lock','1498696587:1'),(115,67,'_wp_page_template','page-templates/full-width-page.php'),(1154,256,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<p style=\"text-align: left;\">Commercial On-site = $75/hr</p><p style=\"text-align: left;\">Residential On-site = $60/hr</p><p style=\"text-align: left;\">Cable Installation = $50/hr</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:204:\"<p>Contract A = $200/mo</p><p>This plan includes 3 hours per month and gives you on-site priority.</p><p>Contract B = $325/mo</p><p>This plan includes 5 hours per month and gives you on-site priority.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1153,255,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<p style=\"text-align: left;\">Commercial On-site = $75/hr</p><p style=\"text-align: left;\">Residential On-site = $60/hr</p><p style=\"text-align: left;\">Cable Installation = $50/hr</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:204:\"<p>Contract A = $200/mo</p><p>This plan includes 3 hours per month and gives you on-site priority.</p><p>Contract B = $325/mo</p><p>This plan includes 5 hours per month and gives you on-site priority.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(141,78,'_edit_last','1'),(142,78,'_edit_lock','1505788012:1'),(143,78,'_wp_page_template','page-templates/full-width-page.php'),(152,81,'_edit_last','1'),(153,81,'_edit_lock','1495401901:1'),(154,81,'_wp_page_template','page-templates/full-width-page.php'),(163,84,'_edit_last','1'),(164,84,'_edit_lock','1498593093:1'),(165,84,'_wp_page_template','page-templates/full-width-page.php'),(1124,4,'panels_data','a:3:{s:7:\"widgets\";a:30:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:5:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:548:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 120 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nRTS are experts at computer repair, printer repair, copier repair, servers, cable installation, cable termination, point of sale, touchscreens, thermal printers, cash drawers and POS software. We also have a list of internet marketing plans to choose from to help your digital identity grow.\";s:6:\"filter\";b:0;s:6:\"visual\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:5:{s:5:\"title\";s:19:\"Some of Our Clients\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"5557850a-191f-43ca-b05a-54bf13bcef8f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:14:{s:5:\"image\";i:986;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Arby\'s\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd314391846\";s:19:\"_sow_form_timestamp\";s:13:\"1508034104600\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"7ca1aca7-41c3-4ffe-840d-af10b425e12e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:871;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:12:\"Massage Envy\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd314e447ae\";s:19:\"_sow_form_timestamp\";s:13:\"1505788271440\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"77e430d0-7e61-4f32-a9cd-cf118c6edd30\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:14:{s:5:\"image\";i:969;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2b9a5c126a\";s:19:\"_sow_form_timestamp\";s:13:\"1508030922064\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"9948e29b-439d-48fb-924c-554715848be0\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:14:{s:5:\"image\";i:975;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bf5f23370\";s:19:\"_sow_form_timestamp\";s:13:\"1508032385352\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"1ceb2745-136a-4365-b1fb-b79d6d35d9b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:14:{s:5:\"image\";i:850;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:2:\"HP\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd314c22a05\";s:19:\"_sow_form_timestamp\";s:13:\"1505788225374\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"0af0cfe7-e6f5-477e-8630-a41b12a21088\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:14:{s:5:\"image\";i:874;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:11:\"AMC Cinemas\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3145e958f\";s:19:\"_sow_form_timestamp\";s:13:\"1505788295324\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"4d9af43f-12db-40c5-8b71-246c5719f55f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:14:{s:5:\"image\";i:926;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"Allstate\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3181af00e\";s:19:\"_sow_form_timestamp\";s:13:\"1505788421294\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"e518c9d2-e3fd-447c-9284-b7a02667a8df\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:14:{s:5:\"image\";i:994;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bf661150a\";s:19:\"_sow_form_timestamp\";s:13:\"1508035161245\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"c02947d1-7d03-4988-b232-63b066f61393\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:14:{s:5:\"image\";i:852;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"T-Mobile\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3151a3337\";s:19:\"_sow_form_timestamp\";s:13:\"1505788241667\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:2;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"608ce943-a6bd-4bde-b373-8f5ce20d1ffe\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:14:{s:5:\"image\";i:880;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:9:\"Earthlink\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3147efd2c\";s:19:\"_sow_form_timestamp\";s:13:\"1505788311407\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:2;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"bb6d6035-9ee2-4139-a347-7cb5949d7446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:14:{s:5:\"image\";i:908;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:5:\"Zales\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3157c875f\";s:19:\"_sow_form_timestamp\";s:13:\"1505788374836\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:2;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"197a9d65-7529-4c3f-aa5a-216206c606a5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:14:{s:5:\"image\";i:977;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bf6a054ef\";s:19:\"_sow_form_timestamp\";s:13:\"1508032464763\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:2;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"e53963d9-f1b2-49bf-88f5-fb9f67d5bfb7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:14:{s:5:\"image\";i:851;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Penske\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd317f78acc\";s:19:\"_sow_form_timestamp\";s:13:\"1505788256153\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:3;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"63ee93b5-440e-4e32-8a0a-4434546a8f19\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:14:{s:5:\"image\";i:886;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:12:\"Under Armour\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3159c1767\";s:19:\"_sow_form_timestamp\";s:13:\"1505788324797\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:3;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"d2ccb7eb-d192-4fc7-bc3e-624ed59f21d0\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:14:{s:5:\"image\";i:905;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3155a2ac8\";s:19:\"_sow_form_timestamp\";s:13:\"1505767958679\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:3;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"b728a818-e251-4ea2-91d3-18fffcad7e36\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:14:{s:5:\"image\";i:989;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bfd87e86f\";s:19:\"_sow_form_timestamp\";s:13:\"1508034387827\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:3;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"6675c947-1b49-4ffb-964d-8f0e51ec269a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:14:{s:5:\"image\";i:893;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:13:\"http://Macy\'s\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd315c15525\";s:19:\"_sow_form_timestamp\";s:13:\"1505788409622\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:4;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"5a8d226b-3759-4061-8808-2f0fe3e84891\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:14:{s:5:\"image\";i:915;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:3:\"FBM\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3149c93fd\";s:19:\"_sow_form_timestamp\";s:13:\"1505788432493\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:4;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"06a74476-2d4b-46b6-afe4-0d28c4ef1cf0\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:14:{s:5:\"image\";i:890;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Kroger\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd313b33897\";s:19:\"_sow_form_timestamp\";s:13:\"1505788362972\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:4;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"19524f39-11a7-4a6e-927a-9eb2f9457735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:14:{s:5:\"image\";i:979;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bffd526fe\";s:19:\"_sow_form_timestamp\";s:13:\"1508032532286\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:4;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"25857b24-f26c-4341-9976-424800045406\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:14:{s:5:\"image\";i:895;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:11:\"Lane Bryant\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd3153be058\";s:19:\"_sow_form_timestamp\";s:13:\"1505788389067\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:5;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"f91e044b-5a8b-4422-b56c-2ba75101b0ca\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:14:{s:5:\"image\";i:889;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:3:\"NCR\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59bd314fec6ac\";s:19:\"_sow_form_timestamp\";s:13:\"1505788352215\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:5;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"96b7867a-5e58-42ef-91a7-27dc408a7b69\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:14:{s:5:\"image\";i:997;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2bf30d1912\";s:19:\"_sow_form_timestamp\";s:13:\"1508035398920\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:5;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"1219895d-846e-4c4e-8651-9797a8c26b69\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:28;a:14:{s:5:\"image\";i:1000;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59e2ce08ec6b4\";s:19:\"_sow_form_timestamp\";s:13:\"1508036127550\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:5;s:2:\"id\";i:28;s:9:\"widget_id\";s:36:\"4f36a343-abdc-4908-9556-374946cf5dcd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:29;a:5:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:323:\"<center>All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement. Some clients have been serviced through third party outsourcing.</center>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:29;s:9:\"widget_id\";s:36:\"c01f84db-ec37-405c-ae55-a35d422eb0b7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:6;s:5:\"style\";a:5:{s:7:\"padding\";s:19:\"10px 10px 10px 10px\";s:10:\"background\";s:7:\"#ffffff\";s:18:\"background_display\";s:4:\"tile\";s:12:\"border_color\";s:7:\"#ffffff\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:12:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:2;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:3;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:4;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:5;s:6:\"weight\";d:0.1666666666670000018779518313749576918780803680419921875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1122,241,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:592:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation.\n\nWe service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.65000000000000002220446049250313080847263336181640625;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(176,88,'_wp_attached_file','2017/02/bannerftw.png'),(177,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2046;s:6:\"height\";i:502;s:4:\"file\";s:21:\"2017/02/bannerftw.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bannerftw-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"bannerftw-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"bannerftw-768x188.png\";s:5:\"width\";i:768;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"bannerftw-1024x251.png\";s:5:\"width\";i:1024;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:21:\"bannerftw-700x502.png\";s:5:\"width\";i:700;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:21:\"bannerftw-650x502.png\";s:5:\"width\";i:650;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"bannerftw-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:19:\"bannerftw-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;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:{}}}'),(1155,257,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:213:\"Commercial On-site = $75/hr\n\nResidential On-site = $60/hr\n\nCable Installation = $50/hr\n\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.5;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}}}'),(1963,648,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498591851376\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(460,122,'_menu_item_type','post_type'),(461,122,'_menu_item_menu_item_parent','0'),(462,122,'_menu_item_object_id','4'),(463,122,'_menu_item_object','page'),(464,122,'_menu_item_target',''),(465,122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(466,122,'_menu_item_xfn',''),(467,122,'_menu_item_url',''),(469,123,'_menu_item_type','post_type'),(470,123,'_menu_item_menu_item_parent','0'),(471,123,'_menu_item_object_id','11'),(472,123,'_menu_item_object','page'),(473,123,'_menu_item_target',''),(474,123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(475,123,'_menu_item_xfn',''),(476,123,'_menu_item_url',''),(809,4,'_yoast_wpseo_focuskw_text_input','technology'),(532,130,'_menu_item_type','post_type'),(533,130,'_menu_item_menu_item_parent','0'),(534,130,'_menu_item_object_id','20'),(535,130,'_menu_item_object','page'),(536,130,'_menu_item_target',''),(537,130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(538,130,'_menu_item_xfn',''),(539,130,'_menu_item_url',''),(604,138,'_menu_item_type','post_type'),(605,138,'_menu_item_menu_item_parent','0'),(606,138,'_menu_item_object_id','81'),(607,138,'_menu_item_object','page'),(608,138,'_menu_item_target',''),(609,138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(610,138,'_menu_item_xfn',''),(611,138,'_menu_item_url',''),(613,139,'_menu_item_type','post_type'),(614,139,'_menu_item_menu_item_parent','0'),(615,139,'_menu_item_object_id','67'),(616,139,'_menu_item_object','page'),(617,139,'_menu_item_target',''),(618,139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(619,139,'_menu_item_xfn',''),(620,139,'_menu_item_url',''),(1620,468,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:26:\"Robust and Easy to Use POS\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(649,143,'_menu_item_type','post_type'),(650,143,'_menu_item_menu_item_parent','0'),(651,143,'_menu_item_object_id','78'),(652,143,'_menu_item_object','page'),(653,143,'_menu_item_target',''),(654,143,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(655,143,'_menu_item_xfn',''),(656,143,'_menu_item_url',''),(658,144,'_menu_item_type','post_type'),(659,144,'_menu_item_menu_item_parent','0'),(660,144,'_menu_item_object_id','47'),(661,144,'_menu_item_object','page'),(662,144,'_menu_item_target',''),(663,144,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(664,144,'_menu_item_xfn',''),(665,144,'_menu_item_url',''),(1151,253,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<p style=\"text-align: left;\">Commercial On-site = $75/hr</p><p style=\"text-align: left;\">Residential On-site = $60/hr</p><p style=\"text-align: left;\">Cable Installation = $50/hr</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:204:\"<p>Contract A = $200/mo</p><p>This plan includes 3 hours per month and gives you on-site priority.</p><p>Contract B = $325/mo</p><p>This plan includes 5 hours per month and gives you on-site priority.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1152,254,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<p style=\"text-align: left;\">Commercial On-site = $75/hr</p><p style=\"text-align: left;\">Residential On-site = $60/hr</p><p style=\"text-align: left;\">Cable Installation = $50/hr</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:204:\"<p>Contract A = $200/mo</p><p>This plan includes 3 hours per month and gives you on-site priority.</p><p>Contract B = $325/mo</p><p>This plan includes 5 hours per month and gives you on-site priority.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(712,150,'_menu_item_type','post_type'),(713,150,'_menu_item_menu_item_parent','0'),(714,150,'_menu_item_object_id','84'),(715,150,'_menu_item_object','page'),(716,150,'_menu_item_target',''),(717,150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(718,150,'_menu_item_xfn',''),(719,150,'_menu_item_url',''),(810,4,'_yoast_wpseo_focuskw','technology'),(811,4,'_yoast_wpseo_title','Rasbury Technology Solutions | Computer Repair Services | Fort Wayne'),(812,4,'_yoast_wpseo_metadesc','Serving the Fort Wayne and surrounding area, we provide computer repair, internet marketing, surveillance cameras, alarms, telecom, A/V and much more.'),(813,4,'_yoast_wpseo_linkdex','69'),(814,4,'_yoast_wpseo_content_score','90'),(815,78,'_yoast_wpseo_content_score','30'),(816,174,'_wp_attached_file','2017/02/home.png'),(817,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:440;s:4:\"file\";s:16:\"2017/02/home.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"home-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"home-300x116.png\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"home-768x296.png\";s:5:\"width\";i:768;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"home-1024x395.png\";s:5:\"width\";i:1024;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:16:\"home-700x440.png\";s:5:\"width\";i:700;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:16:\"home-650x440.png\";s:5:\"width\";i:650;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:16:\"home-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:14:\"home-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:16:\"home-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(819,176,'_wp_attached_file','2017/02/homeimage.png'),(820,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:440;s:4:\"file\";s:21:\"2017/02/homeimage.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"homeimage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"homeimage-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"homeimage-768x213.png\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"homeimage-1024x285.png\";s:5:\"width\";i:1024;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:21:\"homeimage-700x440.png\";s:5:\"width\";i:700;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:21:\"homeimage-650x440.png\";s:5:\"width\";i:650;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"homeimage-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:19:\"homeimage-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:21:\"homeimage-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(826,176,'_edit_lock','1487732342:1'),(835,183,'_edit_last','1'),(836,183,'_thumbnail_id','186'),(839,183,'_yoast_wpseo_content_score','30'),(840,183,'_yoast_wpseo_primary_category','4'),(841,183,'_edit_lock','1487802439:1'),(844,186,'_wp_attached_file','2017/02/server.jpg'),(845,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2017/02/server.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"server-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"server-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"server-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"server-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:18:\"server-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:18:\"server-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:18:\"server-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:16:\"server-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:18:\"server-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(898,207,'_wp_attached_file','2017/02/alarm.png'),(899,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1310;s:6:\"height\";i:873;s:4:\"file\";s:17:\"2017/02/alarm.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"alarm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"alarm-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"alarm-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"alarm-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:17:\"alarm-700x550.png\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"alarm-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"alarm-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:15:\"alarm-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"alarm-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(848,189,'_wp_attached_file','2017/02/cable.jpg'),(849,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2017/02/cable.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cable-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cable-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"cable-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"cable-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:17:\"cable-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:17:\"cable-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"cable-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:15:\"cable-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"cable-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:16:\"SAMSUNG-SM-G900A\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457025938\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.8\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(896,206,'_wp_attached_file','2017/02/camera.png'),(897,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2017/02/camera.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"camera-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"camera-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"camera-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"camera-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:18:\"camera-700x550.png\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:18:\"camera-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:18:\"camera-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:16:\"camera-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:18:\"camera-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(852,191,'_wp_attached_file','2017/02/copier.jpg'),(853,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:18:\"2017/02/copier.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"copier-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"copier-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"copier-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"copier-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:18:\"copier-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:18:\"copier-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:18:\"copier-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:16:\"copier-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:18:\"copier-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(854,192,'_wp_attached_file','2017/02/pos.jpg'),(855,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:15:\"2017/02/pos.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"pos-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pos-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"pos-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:15:\"pos-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:15:\"pos-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:15:\"pos-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:13:\"pos-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:15:\"pos-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1327517612\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(856,193,'_wp_attached_file','2017/02/projector.jpg'),(857,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:537;s:4:\"file\";s:21:\"2017/02/projector.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"projector-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"projector-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"projector-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:21:\"projector-700x537.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:21:\"projector-650x537.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"projector-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:19:\"projector-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:21:\"projector-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(858,194,'_wp_attached_file','2017/02/telecom.jpg'),(859,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2017/02/telecom.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"telecom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"telecom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"telecom-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:19:\"telecom-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:19:\"telecom-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:19:\"telecom-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:17:\"telecom-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:19:\"telecom-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(911,210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2017/02/webdesign.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"webdesign-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"webdesign-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"webdesign-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"webdesign-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:21:\"webdesign-700x550.png\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:21:\"webdesign-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:21:\"webdesign-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:19:\"webdesign-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:21:\"webdesign-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(867,197,'_edit_lock','1487802422:1'),(866,197,'_edit_last','1'),(868,197,'_thumbnail_id','189'),(874,199,'_edit_lock','1487737726:1'),(873,199,'_edit_last','1'),(871,197,'_yoast_wpseo_content_score','30'),(872,197,'_yoast_wpseo_primary_category','4'),(910,210,'_wp_attached_file','2017/02/webdesign.png'),(881,201,'_edit_lock','1487736673:1'),(880,201,'_edit_last','1'),(878,199,'_yoast_wpseo_content_score','30'),(879,199,'_yoast_wpseo_primary_category','4'),(882,201,'_thumbnail_id','192'),(888,203,'_edit_lock','1487737542:1'),(887,203,'_edit_last','1'),(885,201,'_yoast_wpseo_content_score','30'),(886,201,'_yoast_wpseo_primary_category','4'),(895,205,'_edit_lock','1487737433:1'),(894,205,'_edit_last','1'),(892,203,'_yoast_wpseo_content_score','30'),(893,203,'_yoast_wpseo_primary_category','4'),(900,205,'_thumbnail_id','207'),(905,203,'_thumbnail_id','206'),(903,205,'_yoast_wpseo_content_score','30'),(904,205,'_yoast_wpseo_primary_category','4'),(912,199,'_thumbnail_id','210'),(916,211,'_edit_lock','1487737771:1'),(915,211,'_edit_last','1'),(917,211,'_thumbnail_id','194'),(923,213,'_edit_lock','1487802481:1'),(922,213,'_edit_last','1'),(920,211,'_yoast_wpseo_content_score','30'),(921,211,'_yoast_wpseo_primary_category','4'),(924,213,'_thumbnail_id','193'),(927,213,'_yoast_wpseo_content_score','30'),(928,213,'_yoast_wpseo_primary_category','4'),(931,183,'_wp_old_slug','image1'),(990,11,'_yoast_wpseo_content_score','60'),(1196,20,'hide_singular_title','0'),(992,20,'_yoast_wpseo_content_score','90'),(1197,81,'hide_singular_title','0'),(994,81,'_yoast_wpseo_content_score','60'),(1198,67,'hide_singular_title','0'),(996,67,'_yoast_wpseo_content_score','90'),(1199,78,'hide_singular_title','0'),(1200,47,'hide_singular_title','0'),(999,47,'_yoast_wpseo_content_score','90'),(1201,84,'hide_singular_title','0'),(1001,84,'_yoast_wpseo_content_score','60'),(1033,11,'_panels_data_preview','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";i:1;}}}'),(1123,242,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:592:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation.\n\nWe service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.65000000000000002220446049250313080847263336181640625;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(1034,11,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:5:{s:5:\"title\";s:32:\"Servers & Network Infrastructure\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:14:{s:5:\"image\";i:794;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:19:\"_sow_form_timestamp\";s:13:\"1504580642138\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1621,469,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:26:\"Robust and Easy to Use POS\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1360,4,'hide_singular_title','0'),(1128,241,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1125,243,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:8:\"features\";a:1:{i:0;a:10:{s:15:\"container_color\";s:7:\"#404040\";s:4:\"icon\";s:0:\"\";s:10:\"icon_title\";s:11:\"IT Services\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:10:\"icon_image\";i:0;s:15:\"icon_image_size\";s:4:\"full\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:9:\"more_text\";s:0:\"\";s:8:\"more_url\";s:0:\"\";}}s:5:\"fonts\";a:4:{s:13:\"title_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"text_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:17:\"more_text_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:24:\"so_field_container_state\";s:6:\"closed\";}s:15:\"container_shape\";s:5:\"round\";s:14:\"container_size\";s:4:\"84px\";s:19:\"container_size_unit\";s:2:\"px\";s:9:\"icon_size\";s:4:\"24px\";s:14:\"icon_size_unit\";s:2:\"px\";s:7:\"per_row\";d:3;s:10:\"responsive\";b:1;s:12:\"_sow_form_id\";s:13:\"58d079f92edcb\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:33:\"SiteOrigin_Widget_Features_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f62f7854-235c-43f0-b324-b1feddc913cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"title_link\";b:0;s:9:\"icon_link\";b:0;s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1126,4,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:312:\"RTS can handle every aspect of your businesses technology needs. With years of experience in servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1361,336,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:296:\"RTS can handle every aspect of your businesses technology needs. With years of experience in servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1359,335,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:24:{s:13:\"_widget_title\";s:11:\"IT Services\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:84:\"<p>With over 20 years experience RTS is determined to help every client succeed.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"5cf40333-662f-4054-8ff2-ad901c62f232\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1127,244,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:8:\"features\";a:1:{i:0;a:10:{s:15:\"container_color\";s:7:\"#404040\";s:4:\"icon\";s:0:\"\";s:10:\"icon_title\";s:11:\"IT Services\";s:10:\"icon_color\";s:7:\"#FFFFFF\";s:10:\"icon_image\";i:0;s:15:\"icon_image_size\";s:4:\"full\";s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:9:\"more_text\";s:0:\"\";s:8:\"more_url\";s:0:\"\";}}s:5:\"fonts\";a:4:{s:13:\"title_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"text_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:17:\"more_text_options\";a:5:{s:4:\"font\";s:7:\"default\";s:4:\"size\";b:0;s:9:\"size_unit\";s:2:\"px\";s:5:\"color\";b:0;s:24:\"so_field_container_state\";s:6:\"closed\";}s:24:\"so_field_container_state\";s:6:\"closed\";}s:15:\"container_shape\";s:5:\"round\";s:14:\"container_size\";s:4:\"84px\";s:19:\"container_size_unit\";s:2:\"px\";s:9:\"icon_size\";s:4:\"24px\";s:14:\"icon_size_unit\";s:2:\"px\";s:7:\"per_row\";d:3;s:10:\"responsive\";b:1;s:12:\"_sow_form_id\";s:13:\"58d079f92edcb\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:33:\"SiteOrigin_Widget_Features_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"f62f7854-235c-43f0-b324-b1feddc913cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"title_link\";b:0;s:9:\"icon_link\";b:0;s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1129,245,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1130,246,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:24:{s:13:\"_widget_title\";s:14:\"On-site Prices\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1131,247,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:24:{s:13:\"_widget_title\";s:14:\"On-site Prices\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1156,258,'_edit_last','1'),(1157,258,'_wp_page_template','page-templates/full-width-page.php'),(1195,258,'hide_singular_title','0'),(1132,241,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1133,248,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1134,249,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1150,241,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:591:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:24:{s:13:\"_widget_title\";s:18:\"On-site Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:181:\"<p style=\"text-align: left;\">Commercial On-site = $75/hr</p><p style=\"text-align: left;\">Residential On-site = $60/hr</p><p style=\"text-align: left;\">Cable Installation = $50/hr</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"39e28719-883a-4568-930e-a2fb56fe4441\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:19:\"Contract Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:204:\"<p>Contract A = $200/mo</p><p>This plan includes 3 hours per month and gives you on-site priority.</p><p>Contract B = $325/mo</p><p>This plan includes 5 hours per month and gives you on-site priority.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"12b34c5f-12bc-447d-bfdf-71a02e506a5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:16:\"Parts Price List\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:0:\"\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"SHOW LIST\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c67bc50c-2a87-4e59-abf1-83584a9d1e42\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1194,261,'hide_singular_title','0'),(1943,631,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:51:\"This site is completely secure with SSL encryption.\";s:4:\"text\";s:80:\"Use this page to pay an invoice, down payment or other payment instructed by RTS\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"7ffd20be-72b6-42ae-ba5d-2ec2139db61d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:239:\"Please enter an amount below and click \"Make Payment\"<br>\nOnly use whole numbers with no decimal. Example: 50, 100, 250<br>\nIf you are paying an invoice with cents please round down.<br>\nWe always waive the change on your invoice with RTS.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"0ab7700c-31e3-4508-8b7f-8ccc25e2581c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:113:\"[direct-stripe type=\"donation\" name=\"RTS Payment\" description=\"Please enter correct amount\" label=\"Make Payment\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9dd670a1-15e9-4bb3-b85d-d412ed9e72b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1166,258,'_yoast_wpseo_content_score','90'),(1167,258,'_edit_lock','1492029567:1'),(1168,261,'_edit_last','1'),(1169,261,'_wp_page_template','page-templates/full-width-page.php'),(1940,630,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:51:\"This site is completely secure with SSL encryption.\";s:4:\"text\";s:80:\"Use this page to pay an invoice, down payment or other payment instructed by RTS\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"7ffd20be-72b6-42ae-ba5d-2ec2139db61d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:239:\"Please enter an amount below and click \"Make Payment\"<br>\nOnly use whole numbers with no decimal. Example: 50, 100, 250<br>\nIf you are paying an invoice with cents please round down.<br>\nWe always waive the change on your invoice with RTS.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"0ab7700c-31e3-4508-8b7f-8ccc25e2581c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:113:\"[direct-stripe type=\"donation\" name=\"RTS Payment\" description=\"Please enter correct amount\" label=\"Make Payment\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9dd670a1-15e9-4bb3-b85d-d412ed9e72b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1946,632,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:51:\"This site is completely secure with SSL encryption.\";s:4:\"text\";s:80:\"Use this page to pay an invoice, down payment or other payment instructed by RTS\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"7ffd20be-72b6-42ae-ba5d-2ec2139db61d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:239:\"Please enter an amount below and click \"Make Payment\"<br>\nOnly use whole numbers with no decimal. Example: 50, 100, 250<br>\nIf you are paying an invoice with cents please round down.<br>\nWe always waive the change on your invoice with RTS.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"0ab7700c-31e3-4508-8b7f-8ccc25e2581c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:113:\"[direct-stripe type=\"donation\" name=\"RTS Payment\" description=\"Please enter correct amount\" label=\"Make Payment\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9dd670a1-15e9-4bb3-b85d-d412ed9e72b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1178,261,'_yoast_wpseo_content_score','90'),(1179,261,'_edit_lock','1491850488:1'),(1180,261,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:23:\"Your Payment Has Failed\";s:4:\"text\";s:114:\"Please try your payment again. If you feel this error is not correct please contact us immediately for assistance.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"2dbe10de-f483-494c-8e23-ebd3f269e57c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1181,261,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:23:\"Your Payment Has Failed\";s:4:\"text\";s:114:\"Please try your payment again. If you feel this error is not correct please contact us immediately for assistance.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"2dbe10de-f483-494c-8e23-ebd3f269e57c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1182,258,'_panels_data_preview','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1183,258,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:310:\"Thank you for making a payment. Your payment has processed correctly.\n<br><br>\nYou should receive an email confirmation shortly.\n<br><br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\n*Please complete the web services information form if you are purchasing subscription services.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1941,628,'_yoast_wpseo_content_score','90'),(1942,630,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:51:\"This site is completely secure with SSL encryption.\";s:4:\"text\";s:80:\"Use this page to pay an invoice, down payment or other payment instructed by RTS\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"7ffd20be-72b6-42ae-ba5d-2ec2139db61d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:239:\"Please enter an amount below and click \"Make Payment\"<br>\nOnly use whole numbers with no decimal. Example: 50, 100, 250<br>\nIf you are paying an invoice with cents please round down.<br>\nWe always waive the change on your invoice with RTS.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"0ab7700c-31e3-4508-8b7f-8ccc25e2581c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:113:\"[direct-stripe type=\"donation\" name=\"RTS Payment\" description=\"Please enter correct amount\" label=\"Make Payment\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9dd670a1-15e9-4bb3-b85d-d412ed9e72b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1220,274,'_edit_last','1'),(1221,274,'_edit_lock','1491684208:1'),(1222,274,'_wp_page_template','page-templates/full-width-page.php'),(1250,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2017/03/RST-Logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"RST-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:18:\"RST-Logo-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:20:\"RST-Logo-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1249,281,'_wp_attached_file','2017/03/RST-Logo.png'),(1231,274,'_yoast_wpseo_content_score','30'),(1232,274,'hide_singular_title','1'),(1234,272,'_edit_lock','1493130363:1'),(1235,272,'_edit_last','1'),(1236,272,'_wp_page_template','page-templates/full-width-page.php'),(1237,272,'_yoast_wpseo_content_score','30'),(1238,272,'hide_singular_title','0'),(1239,274,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:31:\"[wp_support_plus_create_ticket]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8d1c6780-e62d-4c0a-8e50-bb3c3af1b897\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.15000000000000002220446049250313080847263336181640625;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.15000000000000002220446049250313080847263336181640625;}}}'),(1240,280,'_menu_item_type','post_type'),(1241,280,'_menu_item_menu_item_parent','0'),(1242,280,'_menu_item_object_id','274'),(1243,280,'_menu_item_object','page'),(1244,280,'_menu_item_target',''),(1245,280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1246,280,'_menu_item_xfn',''),(1247,280,'_menu_item_url',''),(1251,282,'_wp_attached_file','2017/03/loginlogo.png'),(1252,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:298;s:6:\"height\";i:127;s:4:\"file\";s:21:\"2017/03/loginlogo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"loginlogo-150x127.png\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:19:\"loginlogo-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:21:\"loginlogo-272x127.png\";s:5:\"width\";i:272;s:6:\"height\";i:127;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:{}}}'),(1253,11,'hide_singular_title','0'),(1254,11,'_yoast_wpseo_focuskw_text_input','computer'),(1255,11,'_yoast_wpseo_focuskw','computer'),(1256,11,'_yoast_wpseo_title','Rasbury Technology Solutions | Computer Repair Services | Fort Wayne'),(1257,11,'_yoast_wpseo_metadesc','Professional commercial, industrial and residential computer repair, networking, cable installation, server management, printer repair and copier repair.'),(1258,11,'_yoast_wpseo_linkdex','85'),(1259,241,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1260,283,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1261,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:7;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:8;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1262,284,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:7;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:8;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1263,285,'_wp_attached_file','2017/02/20plus.png'),(1264,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:245;s:6:\"height\";i:168;s:4:\"file\";s:18:\"2017/02/20plus.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"20plus-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:16:\"20plus-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;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:{}}}'),(1265,286,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:10:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1266,287,'_wp_attached_file','2017/02/dedicatedserver.png'),(1267,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:296;s:4:\"file\";s:27:\"2017/02/dedicatedserver.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"dedicatedserver-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"dedicatedserver-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:27:\"dedicatedserver-350x296.png\";s:5:\"width\";i:350;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:25:\"dedicatedserver-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:27:\"dedicatedserver-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1268,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:287;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:10:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1269,288,'_wp_attached_file','2017/02/canon-copier.png'),(1270,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:350;s:4:\"file\";s:24:\"2017/02/canon-copier.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"canon-copier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"canon-copier-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"canon-copier-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:22:\"canon-copier-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"canon-copier-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1271,289,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:287;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:10:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1274,291,'_wp_attached_file','2017/02/Dell-R620_3_1.png'),(1272,290,'_wp_attached_file','2017/02/Dell-Server.png'),(1273,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:456;s:6:\"height\";i:220;s:4:\"file\";s:23:\"2017/02/Dell-Server.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Dell-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Dell-Server-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:23:\"Dell-Server-350x220.png\";s:5:\"width\";i:350;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:21:\"Dell-Server-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:23:\"Dell-Server-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1275,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:312;s:4:\"file\";s:25:\"2017/02/Dell-R620_3_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-700x312.png\";s:5:\"width\";i:700;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-650x312.png\";s:5:\"width\";i:650;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-350x312.png\";s:5:\"width\";i:350;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:23:\"Dell-R620_3_1-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"Dell-R620_3_1-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1276,292,'_wp_attached_file','2017/02/ethernet-cable-fade.png'),(1277,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1056;s:6:\"height\";i:391;s:4:\"file\";s:31:\"2017/02/ethernet-cable-fade.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-300x111.png\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-768x284.png\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"ethernet-cable-fade-1024x379.png\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-700x391.png\";s:5:\"width\";i:700;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-650x391.png\";s:5:\"width\";i:650;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:29:\"ethernet-cable-fade-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:31:\"ethernet-cable-fade-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1278,293,'_wp_attached_file','2017/02/qulu_MicroServer.png'),(1279,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1928;s:4:\"file\";s:28:\"2017/02/qulu_MicroServer.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-300x289.png\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-768x740.png\";s:5:\"width\";i:768;s:6:\"height\";i:740;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"qulu_MicroServer-1024x987.png\";s:5:\"width\";i:1024;s:6:\"height\";i:987;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-700x550.png\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:26:\"qulu_MicroServer-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:28:\"qulu_MicroServer-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1280,294,'_wp_attached_file','2017/02/dl980.png'),(1281,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:356;s:4:\"file\";s:17:\"2017/02/dl980.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"dl980-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"dl980-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:17:\"dl980-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:15:\"dl980-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"dl980-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1282,295,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:10:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1283,20,'_panels_data_preview','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1284,20,'panels_data','a:3:{s:7:\"widgets\";a:32:{i:0;a:5:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:201:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Supercharge Your Web Identity Today!\n</span>\n\n<b>Payments on this site use Stripe SSL encryption (6 month subscription required).</b>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:5:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:491:\"<strong>Take the first step! </strong>This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes. We also deploy our secret recipe to make your listing move up the ranks.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f0b9fbb0-2785-4bfc-bcdb-3365a86582d1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:5:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:5:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:5:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:5:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:5:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:5:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:5:{s:5:\"title\";s:22:\"Reputation Boost LVL 1\";s:4:\"text\";s:481:\"Negative content impacting your reputation online? It can cost your company money or even be personally embarrassing by having negative content online coming up first when people search for you. RTS can help! We eclipse the negative content with new and good content to restore your good name. Whether it is damaging ads, reviews, news, forums or blog posts we can help. This is for <font color=\"acd80f\"><strong>2 or less</strong></font> negative listings on page one for a search.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"08c2e8b3-b9b3-4302-8e2a-7a375f0e9805\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:5:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Reputation Boost LVL1\" amount=\"reputation\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"7b2362d2-59ae-4777-9aca-45941180bbe9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:5:{s:5:\"title\";s:22:\"Reputation Boost LVL 2\";s:4:\"text\";s:484:\"Negative content impacting your reputation online? It can cost your company money or even be personally embarrassing by having negative content online coming up first when people search for you. RTS can help! We eclipse the negative content with new and good content to restore your good name. Whether it is damaging ads, reviews, news, forums or blog posts we can help. This is for <font color=\"acd80f\"><strong>more than 2 </strong></font>negative listings on page one for a search.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"0ae80ee3-5c4a-40b9-9542-27f02af670af\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:5:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:105:\"[direct-stripe type=\"subscription\" name=\"RTS Reputation Boost LVL2\" amount=\"reputation2\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"f7c1475a-af64-43ab-9be4-8d5a4965f4ed\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:5:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:5:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:5:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:14;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:14;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:28;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:14;s:4:\"cell\";i:1;s:2:\"id\";i:28;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:29;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:15;s:4:\"cell\";i:0;s:2:\"id\";i:29;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:30;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:15;s:4:\"cell\";i:0;s:2:\"id\";i:30;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:31;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:15;s:4:\"cell\";i:1;s:2:\"id\";i:31;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:16:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:14;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:15;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:30:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:18:\"vertical_alignment\";s:4:\"auto\";}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:26;a:4:{s:4:\"grid\";i:14;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:27;a:4:{s:4:\"grid\";i:14;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:28;a:4:{s:4:\"grid\";i:15;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:29;a:4:{s:4:\"grid\";i:15;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1285,297,'_wp_attached_file','2017/02/seo-896175_960_720.png'),(1286,297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:504;s:4:\"file\";s:30:\"2017/02/seo-896175_960_720.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-768x403.png\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-700x504.png\";s:5:\"width\";i:700;s:6:\"height\";i:504;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-650x504.png\";s:5:\"width\";i:650;s:6:\"height\";i:504;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:28:\"seo-896175_960_720-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:30:\"seo-896175_960_720-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1287,298,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1304:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. \";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1288,299,'_wp_attached_file','2017/02/seo.png'),(1289,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:353;s:6:\"height\";i:230;s:4:\"file\";s:15:\"2017/02/seo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"seo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"seo-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:15:\"seo-350x230.png\";s:5:\"width\";i:350;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:13:\"seo-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:15:\"seo-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1290,300,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1291,301,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1292,302,'_wp_attached_file','2017/02/domain_hosting.png'),(1293,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:559;s:6:\"height\";i:369;s:4:\"file\";s:26:\"2017/02/domain_hosting.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"domain_hosting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"domain_hosting-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:26:\"domain_hosting-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:24:\"domain_hosting-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:26:\"domain_hosting-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1294,303,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1295,304,'_wp_attached_file','2017/02/tlds.png'),(1296,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:475;s:6:\"height\";i:361;s:4:\"file\";s:16:\"2017/02/tlds.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"tlds-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"tlds-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:16:\"tlds-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:14:\"tlds-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:16:\"tlds-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1297,300,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1298,305,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1299,306,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:8:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1300,307,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1317,317,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1301,300,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:12:\"Google Local\";s:3:\"url\";s:194:\"http://[direct-stripe%20type=donation%20name=RTS%20Payment%20description=Please%20enter%20correct%20amount%20label=Make%20Payment%20panellabel=This%20will%20add%20one%20more%20setting%20option!]\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e68629abc08\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"62416f59-c9e5-4a8b-8f41-a4413e0a34e2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:3;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1316,316,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:12:\"Google Local\";s:3:\"url\";s:194:\"http://[direct-stripe%20type=donation%20name=RTS%20Payment%20description=Please%20enter%20correct%20amount%20label=Make%20Payment%20panellabel=This%20will%20add%20one%20more%20setting%20option!]\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e68629abc08\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"62416f59-c9e5-4a8b-8f41-a4413e0a34e2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1302,308,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:12:\"Google Local\";s:3:\"url\";s:194:\"http://[direct-stripe%20type=donation%20name=RTS%20Payment%20description=Please%20enter%20correct%20amount%20label=Make%20Payment%20panellabel=This%20will%20add%20one%20more%20setting%20option!]\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e68629abc08\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"62416f59-c9e5-4a8b-8f41-a4413e0a34e2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:3;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1305,310,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1381,347,'_wp_attached_file','2017/03/tublk.png'),(1382,347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:203;s:6:\"height\";i:168;s:4:\"file\";s:17:\"2017/03/tublk.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"tublk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:15:\"tublk-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;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:{}}}'),(1383,348,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:311;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:169:\"*If you have just purchased one of our subscription services please click HERE<br>\nto fill out the appropriate form so we can get started with your order.<br>\nThank you!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"d395a851-cbc4-47bd-9944-ac3417a8d4e2\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1902,610,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:255:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1841,567,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1315,300,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:12:\"Google Local\";s:3:\"url\";s:194:\"http://[direct-stripe%20type=donation%20name=RTS%20Payment%20description=Please%20enter%20correct%20amount%20label=Make%20Payment%20panellabel=This%20will%20add%20one%20more%20setting%20option!]\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e68629abc08\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"62416f59-c9e5-4a8b-8f41-a4413e0a34e2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1318,318,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1319,300,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1320,300,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1321,319,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1322,300,'panels_data','a:3:{s:7:\"widgets\";a:12:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:3;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1323,320,'panels_data','a:3:{s:7:\"widgets\";a:12:{i:0;a:4:{s:5:\"title\";s:31:\"Web Design & Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:3;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1324,300,'panels_data','a:3:{s:7:\"widgets\";a:13:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:3;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1325,300,'panels_data','a:3:{s:7:\"widgets\";a:13:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:3;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1326,321,'panels_data','a:3:{s:7:\"widgets\";a:13:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:2;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:3;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:4;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:12:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:4;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:5;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.25;}i:6;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1327,300,'panels_data','a:3:{s:7:\"widgets\";a:14:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1328,322,'panels_data','a:3:{s:7:\"widgets\";a:14:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:107:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"googleadwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1329,300,'panels_data','a:3:{s:7:\"widgets\";a:19:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1330,323,'panels_data','a:3:{s:7:\"widgets\";a:19:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1331,300,'panels_data','a:3:{s:7:\"widgets\";a:19:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:11;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1332,324,'panels_data','a:3:{s:7:\"widgets\";a:19:{i:0;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:11;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:22:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:9;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:11;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:13;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:15;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:17;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:19;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:21;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1333,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1334,325,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1335,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:449:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>3</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1336,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:449:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>3</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1337,326,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:449:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>3</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1338,327,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:449:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>3</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:372:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months or your money back! Dominate your competition today!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1339,328,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:449:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>3</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:372:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months or your money back! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1340,329,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#af0e0e\">3</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:547:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b>5</b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:372:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months or your money back! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1341,330,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">3</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:576:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:372:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months or your money back! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1342,331,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">3</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:576:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:353:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months! Dominate your competition today!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1343,332,'_edit_last','1'),(1344,332,'_edit_lock','1497224869:1'),(1345,332,'_wp_page_template','page-templates/full-width-page.php'),(1358,243,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:24:{s:13:\"_widget_title\";s:11:\"IT Services\";s:5:\"title\";s:0:\"\";s:7:\"content\";s:84:\"<p>With over 20 years experience RTS is determined to help every client succeed.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"5cf40333-662f-4054-8ff2-ad901c62f232\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.333333333333333314829616256247390992939472198486328125;}}}'),(1355,332,'_yoast_wpseo_content_score','30'),(1356,332,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:102:\"Call (260) 492-2166 to initiate a remote assistance session.\n\nOnce instructed, click the button below.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:23:\"Initiate Remote Session\";s:3:\"url\";s:43:\"http://www.rasburytech.com/TeamViewerQS.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497222083176\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1357,332,'hide_singular_title','1'),(1362,337,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:576:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. With this service we also throw in a high PR backlink program to elevate your website\'s pagerank.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:353:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1363,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:590:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i><b>With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i></b>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:353:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1364,338,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:590:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i><b>With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i></b>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:353:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1365,339,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:583:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:353:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 status within 3 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1369,332,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1370,341,'panels_data','a:3:{s:7:\"widgets\";a:0:{}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1371,342,'_edit_last','1'),(1372,342,'_edit_lock','1504135659:1'),(1373,342,'_wp_page_template','page-templates/full-width-page.php'),(1374,342,'_yoast_wpseo_content_score','30'),(1375,342,'hide_singular_title','1'),(1376,344,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:311;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1377,345,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:311;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1386,342,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Terms and Conditions\";s:4:\"text\";s:10221:\"Services listed on this website are not a solicitation, rather, they are services to potentially improve online rankings. Services per address, customer or company may be rejected, and all orders are subject to review and acceptance by Rasbury Technology Solutions (also referred to as RTS). As all prices are subject to change, your order may not be accepted or we may have to communicate price changes or availability issues to you after you place your order.\n<br><br>\n<b>PAYMENT / CONTRACT TERMS</b>\n<br><br>\nEvery client of RTS is required to read these terms. Every client is required to check the box stating they have read these terms at time of checkout. Failing to read the terms contained with this page does not dissolve, void or lessen the contract entered when marking the box during the checkout process confirming these terms have been read.\n<br><br>\nInternet marketing plans all require a 6 month contract from time of first payment. If any client desires to terminate the contract any time before 6 months have expired payment must be provided for all months unpaid up to the full term of the 6 month contract.\n<br><br>\nRTS in no way guarantees any results achieved as a result of services provided. We cannot claim specific results due to the ever changing nature of the internet and algorithms used in the industry. We can only suggest an opinion based path to success and perform the necessary actions to complete these assumptions. No contract shall be deemed voided or lessened by our inability to achieve specific results, results not promised by our company or time frames not set forth by RTS.\n<br><br>\n<strong>COPYRIGHT / TRADEMARK INFORMATION</strong>\n<br><br>\nThis entire website, copy, images, logos, indicia, text, content, and unique method of showcasing products is copyrighted RTS. All trademarks appearing herein are acknowledged. Permission to use documents delivered from this World Wide Web site and/or server and related graphics is restricted. The name of RTS or any of the above trademarks or logos may not be used in advertising or publicity pertaining to distribution of this information without specific, written prior permission. The information contained in this website is subject to change without notice. We are not responsible for typographical, technical, or descriptive errors of products herein.\n<br><br>\n<strong>ORDER ACCEPTANCE POLICY</strong>\n<br><br>\nYour receipt of an electronic or other form of order confirmation does not signify our acceptance of your order, nor does it constitute confirmation of our offer to sell. RTS reserves the right at any time after receipt of your order to accept or decline your order for any reason. RTS reserves the right at any time after receipt of your order, without prior notice to you, to supply less than the quantity you ordered of any item. All orders placed over $2000.00 ( USD ) must obtain pre-approval with an acceptable method of payment, as established by our credit and fraud avoidance department. We may require additional verifications or information before accepting any order.\n<br><br>\n<strong>TYPOGRAPHICAL ERRORS</strong>\n<br><br>\nIn the event a product is listed at an incorrect price or with incorrect information due to typographical error or error in pricing or product information received from our suppliers, RTS shall have the right to refuse or cancel any orders placed for product listed at the incorrect price. RTS shall have the right to refuse or cancel any such orders whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is canceled, RTS shall immediately issue a credit to your credit card account in the amount of the charge.\n<br><br>\n<strong>LIMITATION OF LIABILITY</strong>\n<br><br>\nIn no event shall RTS or any of its subsidiaries or affiliates be liable for any indirect, special, incidental or consequential damages including but not limited to loss of use, loss of data, loss of business or profits. Some localities do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n<br><br>\n<strong>PROCESSING TIME</strong>\n<br><br>\nYour order is thoroughly reviewed by our Credit Card Department to ensure that the order is accurate, the payment method is valid, and you are authorized to use this payment method. Once your order has passed the rigorous review by our Credit Card Department, it is sent to the appropriate department to be completed.\n<br><br>\nNOTE - We do not charge your credit or debit card when a purchase is initialized, however we do attempt to get an authorization on your card for the amount of your order at the time your order is placed. This authorization is not a charge but still may utilize a portion of your credit limit or available funds making those funds or portion of your credit limit unavailable for other use. In the unlikely event that your order is delayed or cancelled the authorization will expire and your credit limit or available funds will again become available for use. The amount of time it takes for an authorization to expire is dependant on the policies of the bank that issued your card and ranges from 1 to 7 business days.\n<br><br>\nPlease note, credit card processing can take up to 3 business days (Depending on the accuracy of the information given to us by the customer.). Further, for security reasons, voice confirmation may be required before we can process your credit card for payment.\n<br><br>\n<strong>CREDIT / DEBIT CARD AUTHORIZATIONS</strong>\n<br><br>\nAn authorization on a credit or debit card is a hold against your banks credit card spending limit. Your bank should release the authorization when the charge is received. A charge is the only time a transfer of funds is completed; an authorization is not a transfer of funds.\n<br><br>\n<strong>DISPUTE RESOLUTION</strong>\n<br><br>\nAGREEMENT TO RESOLVE ALL DISPUTES THROUGH ARBITRATION OR IN SMALL CLAIMS COURT AND AGREEMENT TO WAIVE A RIGHT TO JURY TRIAL AND TO PARTICIPATION IN CLASS ACTIONS\n<br><br>\nYou and RTS agree to resolve any controversy, dispute, or claim arising out of or relating to your purchase of any product or service from RTS by binding Arbitration administered by the American Arbitration Association, or in a small claims court, and judgment on the arbitration award rendered by the Arbitrator(s) may be entered in a court having competent jurisdiction. This agreement to arbitrate is intended to be broadly interpreted and covers all controversies, disputes, claims arising out or relating to your purchase including, but not limited to contract claims, tort claims and statutory claims, or any combination of claims. We agree that the arbitration or small claim proceeding will take place in Allen County, Indiana.\n<br><br>\nWe agree that the American Arbitration Association shall administer the arbitration, and that the American Arbitration Association\'s Commercial Arbitration Rules and Mediation Procedures and Consumer Related Disputes Supplementary Procedures, if applicable, shall apply. These Arbitration Rules may be found on the American Arbitration Association\'s web site at www.adr.org . You and RTS agree that the Arbitration Award maybe taken to a Court of competent jurisdiction to become an enforceable judgment. You and RTS agree that any arbitration under this Agreement will take place on an individual basis. Class arbitrations and class actions are not permitted.\n<br><br>\nIf you wish to begin arbitration against RTS you must file a case with the American Arbitration Association. You may visit the American Arbitration Association\'s web site at www.adr.org to obtain forms and guidance and to learn the procedure for filing a case under this Arbitration Agreement.\n<br><br>\nThis Arbitration Agreement affects you legal rights. An arbitration is resolved by a neutral party and not a judge or jury. There is less discovery and less exchange of information between the parties to an arbitration than might occur in a court proceeding. An arbitration award is final and binding and will only be overturned or reversed by a court in very limited circumstances. You agree that, by entering into this Agreement, you and RTS are each waiving the right to a trial by jury or to participate in a class action.\n<br><br>\n<strong>GOOGLE TRANSLATE</strong>\n<br><br>\nTerms of Use:\n<br><br>\nThe Google Translate service is a means by which translations of English content from our website are provided solely for the convenience of non-English speaking users of the website. The translated content is provided solely by Google and we do not have any input or control over the translated content. The English language version of the content, as provided by RTS is the only definitive and binding version, and we are not bound by the non-English translations provided by Google Translate. The use of the Google Translate functionality and/or content is also subject to standard terms and conditions and the terms of use of our website. These standard terms and conditions and terms of use may be changed by us at any time without notice.\n<br><br>\nUse of Google Translate:\n<br><br>\nThe Google Translate service is free to RTS users and is intended only as a tool to assist in the translation of our website content. Any other uses, including, without limitation, the incorporation of, advertising into, or the placement of advertising associated with, or targeted towards, the Google Translated content, are strictly prohibited. You must use the Google Translate content as provided and you may not edit or modify the text, technology, content or links supplied.\n<br><br>\nRight to Discontinue Service:\n<br><br>\nRTS reserves the right to cease providing Google Translate functionality and/or content at any time without notice. RTS assumes no liability for, and expressly disclaims responsibility for, your use of the Google Translate functionality or content or for your reliance on the accuracy of its translations.\n<br><br>\n<strong>PRIVACY NOTICE</strong>\n<br><br>\nYou can view our privacy notice by clicking <a href=\"http://rasburytech.com/privacy/\">here</a>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"51449b84-1611-4956-ab88-973ea26fcde5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1385,350,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:176:\"*If you have just purchased one of our subscription services please click <b>HERE</b><br>\nto fill out the appropriate form so we can get started with your order.<br>\nThank you!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"d395a851-cbc4-47bd-9944-ac3417a8d4e2\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.1499999999999999944488848768742172978818416595458984375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(1384,349,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:120:\"Thank you for making a payment. Your payment has processed correctly. If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:169:\"*If you have just purchased one of our subscription services please click HERE<br>\nto fill out the appropriate form so we can get started with your order.<br>\nThank you!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"d395a851-cbc4-47bd-9944-ac3417a8d4e2\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.1499999999999999944488848768742172978818416595458984375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(1387,342,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Terms and Conditions\";s:4:\"text\";s:9965:\"Services listed on this website are not a solicitation, rather, they are services to potentially improve online rankings. Services per address, customer or company may be rejected, and all orders are subject to review and acceptance by Rasbury Technology Solutions (also referred to as RTS). As all prices are subject to change, your order may not be accepted or we may have to communicate price changes or availability issues to you after you place your order.\n\n\n<b>PAYMENT / CONTRACT TERMS</b>\n\n\nEvery client of RTS is required to read these terms. Every client is required to check the box stating they have read these terms at time of checkout. Failing to read the terms contained with this page does not dissolve, void or lessen the contract entered when clicking \"BUY NOW\" confirming these terms have been read.\n\n\nInternet marketing plans all require a 6 month contract from time of first payment. If any client desires to terminate the contract any time before 6 months have expired payment must be provided for all months unpaid up to the full term of the 6 month contract.\n\n\nRTS in no way guarantees any results achieved as a result of services provided. We cannot claim specific results due to the ever changing nature of the internet and algorithms used in the industry. We can only suggest an opinion based path to success and perform the necessary actions to complete these assumptions. No contract shall be deemed voided or lessened by our inability to achieve specific results, results not promised by our company or time frames not set forth by RTS.\n\n\n<strong>COPYRIGHT / TRADEMARK INFORMATION</strong>\n\n\nThis entire website, copy, images, logos, indicia, text, content, and unique method of showcasing products is copyrighted RTS. All trademarks appearing herein are acknowledged. Permission to use documents delivered from this World Wide Web site and/or server and related graphics is restricted. The name of RTS or any of the above trademarks or logos may not be used in advertising or publicity pertaining to distribution of this information without specific, written prior permission. The information contained in this website is subject to change without notice. We are not responsible for typographical, technical, or descriptive errors of products herein.\n\n\n<strong>ORDER ACCEPTANCE POLICY</strong>\n\n\nYour receipt of an electronic or other form of order confirmation does not signify our acceptance of your order, nor does it constitute confirmation of our offer to sell. RTS reserves the right at any time after receipt of your order to accept or decline your order for any reason. RTS reserves the right at any time after receipt of your order, without prior notice to you, to supply less than the quantity you ordered of any item. All orders placed over $2000.00 ( USD ) must obtain pre-approval with an acceptable method of payment, as established by our credit and fraud avoidance department. We may require additional verifications or information before accepting any order.\n\n\n<strong>TYPOGRAPHICAL ERRORS</strong>\n\n\nIn the event a product is listed at an incorrect price or with incorrect information due to typographical error or error in pricing or product information received from our suppliers, RTS shall have the right to refuse or cancel any orders placed for product listed at the incorrect price. RTS shall have the right to refuse or cancel any such orders whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is canceled, RTS shall immediately issue a credit to your credit card account in the amount of the charge.\n\n\n<strong>LIMITATION OF LIABILITY</strong>\n\n\nIn no event shall RTS or any of its subsidiaries or affiliates be liable for any indirect, special, incidental or consequential damages including but not limited to loss of use, loss of data, loss of business or profits. Some localities do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n\n\n<strong>PROCESSING TIME</strong>\n\n\nYour order is thoroughly reviewed by our Credit Card Department to ensure that the order is accurate, the payment method is valid, and you are authorized to use this payment method. Once your order has passed the rigorous review by our Credit Card Department, it is sent to the appropriate department to be completed.\n\n\nNOTE - We do not charge your credit or debit card when a purchase is initialized, however we do attempt to get an authorization on your card for the amount of your order at the time your order is placed. This authorization is not a charge but still may utilize a portion of your credit limit or available funds making those funds or portion of your credit limit unavailable for other use. In the unlikely event that your order is delayed or cancelled the authorization will expire and your credit limit or available funds will again become available for use. The amount of time it takes for an authorization to expire is dependant on the policies of the bank that issued your card and ranges from 1 to 7 business days.\n\n\nPlease note, credit card processing can take up to 3 business days (Depending on the accuracy of the information given to us by the customer.). Further, for security reasons, voice confirmation may be required before we can process your credit card for payment.\n\n\n<strong>CREDIT / DEBIT CARD AUTHORIZATIONS</strong>\n\n\nAn authorization on a credit or debit card is a hold against your banks credit card spending limit. Your bank should release the authorization when the charge is received. A charge is the only time a transfer of funds is completed; an authorization is not a transfer of funds.\n\n\n<strong>DISPUTE RESOLUTION</strong>\n\n\nAGREEMENT TO RESOLVE ALL DISPUTES THROUGH ARBITRATION OR IN SMALL CLAIMS COURT AND AGREEMENT TO WAIVE A RIGHT TO JURY TRIAL AND TO PARTICIPATION IN CLASS ACTIONS\n\n\nYou and RTS agree to resolve any controversy, dispute, or claim arising out of or relating to your purchase of any product or service from RTS by binding Arbitration administered by the American Arbitration Association, or in a small claims court, and judgment on the arbitration award rendered by the Arbitrator(s) may be entered in a court having competent jurisdiction. This agreement to arbitrate is intended to be broadly interpreted and covers all controversies, disputes, claims arising out or relating to your purchase including, but not limited to contract claims, tort claims and statutory claims, or any combination of claims. We agree that the arbitration or small claim proceeding will take place in Allen County, Indiana.\n\n\nWe agree that the American Arbitration Association shall administer the arbitration, and that the American Arbitration Association\'s Commercial Arbitration Rules and Mediation Procedures and Consumer Related Disputes Supplementary Procedures, if applicable, shall apply. These Arbitration Rules may be found on the American Arbitration Association\'s web site at www.adr.org . You and RTS agree that the Arbitration Award maybe taken to a Court of competent jurisdiction to become an enforceable judgment. You and RTS agree that any arbitration under this Agreement will take place on an individual basis. Class arbitrations and class actions are not permitted.\n\n\nIf you wish to begin arbitration against RTS you must file a case with the American Arbitration Association. You may visit the American Arbitration Association\'s web site at www.adr.org to obtain forms and guidance and to learn the procedure for filing a case under this Arbitration Agreement.\n\n\nThis Arbitration Agreement affects you legal rights. An arbitration is resolved by a neutral party and not a judge or jury. There is less discovery and less exchange of information between the parties to an arbitration than might occur in a court proceeding. An arbitration award is final and binding and will only be overturned or reversed by a court in very limited circumstances. You agree that, by entering into this Agreement, you and RTS are each waiving the right to a trial by jury or to participate in a class action.\n\n\n<strong>GOOGLE TRANSLATE</strong>\n\n\nTerms of Use:\n\n\nThe Google Translate service is a means by which translations of English content from our website are provided solely for the convenience of non-English speaking users of the website. The translated content is provided solely by Google and we do not have any input or control over the translated content. The English language version of the content, as provided by RTS is the only definitive and binding version, and we are not bound by the non-English translations provided by Google Translate. The use of the Google Translate functionality and/or content is also subject to standard terms and conditions and the terms of use of our website. These standard terms and conditions and terms of use may be changed by us at any time without notice.\n\n\nUse of Google Translate:\n\n\nThe Google Translate service is free to RTS users and is intended only as a tool to assist in the translation of our website content. Any other uses, including, without limitation, the incorporation of, advertising into, or the placement of advertising associated with, or targeted towards, the Google Translated content, are strictly prohibited. You must use the Google Translate content as provided and you may not edit or modify the text, technology, content or links supplied.\n\n\nRight to Discontinue Service:\n\n\nRTS reserves the right to cease providing Google Translate functionality and/or content at any time without notice. RTS assumes no liability for, and expressly disclaims responsibility for, your use of the Google Translate functionality or content or for your reliance on the accuracy of its translations.\n\n\n<strong>PRIVACY NOTICE</strong>\n\n\nYou can view our privacy notice by clicking <a href=\"http://rasburytech.com/privacy/\">here</a>.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"51449b84-1611-4956-ab88-973ea26fcde5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1388,352,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Terms and Conditions\";s:4:\"text\";s:9957:\"Services listed on this website are not a solicitation, rather, they are services to potentially improve online rankings. Services per address, customer or company may be rejected, and all orders are subject to review and acceptance by Rasbury Technology Solutions (also referred to as RTS). As all prices are subject to change, your order may not be accepted or we may have to communicate price changes or availability issues to you after you place your order.\n\n<b>PAYMENT / CONTRACT TERMS</b>\n\nEvery client of RTS is required to read these terms. Every client is required to check the box stating they have read these terms at time of checkout. Failing to read the terms contained with this page does not dissolve, void or lessen the contract entered when marking the box during the checkout process confirming these terms have been read.\n\nInternet marketing plans all require a 6 month contract from time of first payment. If any client desires to terminate the contract any time before 6 months have expired payment must be provided for all months unpaid up to the full term of the 6 month contract.\n\nRTS in no way guarantees any results achieved as a result of services provided. We cannot claim specific results due to the ever changing nature of the internet and algorithms used in the industry. We can only suggest an opinion based path to success and perform the necessary actions to complete these assumptions. No contract shall be deemed voided or lessened by our inability to achieve specific results, results not promised by our company or time frames not set forth by RTS.\n\n<strong>COPYRIGHT / TRADEMARK INFORMATION</strong>\n\nThis entire website, copy, images, logos, indicia, text, content, and unique method of showcasing products is copyrighted RTS. All trademarks appearing herein are acknowledged. Permission to use documents delivered from this World Wide Web site and/or server and related graphics is restricted. The name of RTS or any of the above trademarks or logos may not be used in advertising or publicity pertaining to distribution of this information without specific, written prior permission. The information contained in this website is subject to change without notice. We are not responsible for typographical, technical, or descriptive errors of products herein.\n\n<strong>ORDER ACCEPTANCE POLICY</strong>\n\nYour receipt of an electronic or other form of order confirmation does not signify our acceptance of your order, nor does it constitute confirmation of our offer to sell. RTS reserves the right at any time after receipt of your order to accept or decline your order for any reason. RTS reserves the right at any time after receipt of your order, without prior notice to you, to supply less than the quantity you ordered of any item. All orders placed over $2000.00 ( USD ) must obtain pre-approval with an acceptable method of payment, as established by our credit and fraud avoidance department. We may require additional verifications or information before accepting any order.\n\n<strong>TYPOGRAPHICAL ERRORS</strong>\n\nIn the event a product is listed at an incorrect price or with incorrect information due to typographical error or error in pricing or product information received from our suppliers, RTS shall have the right to refuse or cancel any orders placed for product listed at the incorrect price. RTS shall have the right to refuse or cancel any such orders whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is canceled, RTS shall immediately issue a credit to your credit card account in the amount of the charge.\n\n<strong>LIMITATION OF LIABILITY</strong>\n\nIn no event shall RTS or any of its subsidiaries or affiliates be liable for any indirect, special, incidental or consequential damages including but not limited to loss of use, loss of data, loss of business or profits. Some localities do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n\n<strong>PROCESSING TIME</strong>\n\nYour order is thoroughly reviewed by our Credit Card Department to ensure that the order is accurate, the payment method is valid, and you are authorized to use this payment method. Once your order has passed the rigorous review by our Credit Card Department, it is sent to the appropriate department to be completed.\n\nNOTE - We do not charge your credit or debit card when a purchase is initialized, however we do attempt to get an authorization on your card for the amount of your order at the time your order is placed. This authorization is not a charge but still may utilize a portion of your credit limit or available funds making those funds or portion of your credit limit unavailable for other use. In the unlikely event that your order is delayed or cancelled the authorization will expire and your credit limit or available funds will again become available for use. The amount of time it takes for an authorization to expire is dependant on the policies of the bank that issued your card and ranges from 1 to 7 business days.\n\nPlease note, credit card processing can take up to 3 business days (Depending on the accuracy of the information given to us by the customer.). Further, for security reasons, voice confirmation may be required before we can process your credit card for payment.\n\n<strong>CREDIT / DEBIT CARD AUTHORIZATIONS</strong>\n\nAn authorization on a credit or debit card is a hold against your banks credit card spending limit. Your bank should release the authorization when the charge is received. A charge is the only time a transfer of funds is completed; an authorization is not a transfer of funds.\n\n<strong>DISPUTE RESOLUTION</strong>\n\nAGREEMENT TO RESOLVE ALL DISPUTES THROUGH ARBITRATION OR IN SMALL CLAIMS COURT AND AGREEMENT TO WAIVE A RIGHT TO JURY TRIAL AND TO PARTICIPATION IN CLASS ACTIONS\n\nYou and RTS agree to resolve any controversy, dispute, or claim arising out of or relating to your purchase of any product or service from RTS by binding Arbitration administered by the American Arbitration Association, or in a small claims court, and judgment on the arbitration award rendered by the Arbitrator(s) may be entered in a court having competent jurisdiction. This agreement to arbitrate is intended to be broadly interpreted and covers all controversies, disputes, claims arising out or relating to your purchase including, but not limited to contract claims, tort claims and statutory claims, or any combination of claims. We agree that the arbitration or small claim proceeding will take place in Allen County, Indiana.\n\nWe agree that the American Arbitration Association shall administer the arbitration, and that the American Arbitration Association\'s Commercial Arbitration Rules and Mediation Procedures and Consumer Related Disputes Supplementary Procedures, if applicable, shall apply. These Arbitration Rules may be found on the American Arbitration Association\'s web site at www.adr.org . You and RTS agree that the Arbitration Award maybe taken to a Court of competent jurisdiction to become an enforceable judgment. You and RTS agree that any arbitration under this Agreement will take place on an individual basis. Class arbitrations and class actions are not permitted.\n\nIf you wish to begin arbitration against RTS you must file a case with the American Arbitration Association. You may visit the American Arbitration Association\'s web site at www.adr.org to obtain forms and guidance and to learn the procedure for filing a case under this Arbitration Agreement.\n\nThis Arbitration Agreement affects you legal rights. An arbitration is resolved by a neutral party and not a judge or jury. There is less discovery and less exchange of information between the parties to an arbitration than might occur in a court proceeding. An arbitration award is final and binding and will only be overturned or reversed by a court in very limited circumstances. You agree that, by entering into this Agreement, you and RTS are each waiving the right to a trial by jury or to participate in a class action.\n\n<strong>GOOGLE TRANSLATE</strong>\n\nTerms of Use:\n\nThe Google Translate service is a means by which translations of English content from our website are provided solely for the convenience of non-English speaking users of the website. The translated content is provided solely by Google and we do not have any input or control over the translated content. The English language version of the content, as provided by RTS is the only definitive and binding version, and we are not bound by the non-English translations provided by Google Translate. The use of the Google Translate functionality and/or content is also subject to standard terms and conditions and the terms of use of our website. These standard terms and conditions and terms of use may be changed by us at any time without notice.\n\nUse of Google Translate:\n\nThe Google Translate service is free to RTS users and is intended only as a tool to assist in the translation of our website content. Any other uses, including, without limitation, the incorporation of, advertising into, or the placement of advertising associated with, or targeted towards, the Google Translated content, are strictly prohibited. You must use the Google Translate content as provided and you may not edit or modify the text, technology, content or links supplied.\n\nRight to Discontinue Service:\n\nRTS reserves the right to cease providing Google Translate functionality and/or content at any time without notice. RTS assumes no liability for, and expressly disclaims responsibility for, your use of the Google Translate functionality or content or for your reliance on the accuracy of its translations.\n\n<strong>PRIVACY NOTICE</strong>\n\nYou can view our privacy notice by clicking <a href=\"http://rasburytech.com/privacy/\">here</a>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"51449b84-1611-4956-ab88-973ea26fcde5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(2027,693,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Terms and Conditions\";s:4:\"text\";s:9965:\"Services listed on this website are not a solicitation, rather, they are services to potentially improve online rankings. Services per address, customer or company may be rejected, and all orders are subject to review and acceptance by Rasbury Technology Solutions (also referred to as RTS). As all prices are subject to change, your order may not be accepted or we may have to communicate price changes or availability issues to you after you place your order.\n\n\n<b>PAYMENT / CONTRACT TERMS</b>\n\n\nEvery client of RTS is required to read these terms. Every client is required to check the box stating they have read these terms at time of checkout. Failing to read the terms contained with this page does not dissolve, void or lessen the contract entered when clicking \"BUY NOW\" confirming these terms have been read.\n\n\nInternet marketing plans all require a 6 month contract from time of first payment. If any client desires to terminate the contract any time before 6 months have expired payment must be provided for all months unpaid up to the full term of the 6 month contract.\n\n\nRTS in no way guarantees any results achieved as a result of services provided. We cannot claim specific results due to the ever changing nature of the internet and algorithms used in the industry. We can only suggest an opinion based path to success and perform the necessary actions to complete these assumptions. No contract shall be deemed voided or lessened by our inability to achieve specific results, results not promised by our company or time frames not set forth by RTS.\n\n\n<strong>COPYRIGHT / TRADEMARK INFORMATION</strong>\n\n\nThis entire website, copy, images, logos, indicia, text, content, and unique method of showcasing products is copyrighted RTS. All trademarks appearing herein are acknowledged. Permission to use documents delivered from this World Wide Web site and/or server and related graphics is restricted. The name of RTS or any of the above trademarks or logos may not be used in advertising or publicity pertaining to distribution of this information without specific, written prior permission. The information contained in this website is subject to change without notice. We are not responsible for typographical, technical, or descriptive errors of products herein.\n\n\n<strong>ORDER ACCEPTANCE POLICY</strong>\n\n\nYour receipt of an electronic or other form of order confirmation does not signify our acceptance of your order, nor does it constitute confirmation of our offer to sell. RTS reserves the right at any time after receipt of your order to accept or decline your order for any reason. RTS reserves the right at any time after receipt of your order, without prior notice to you, to supply less than the quantity you ordered of any item. All orders placed over $2000.00 ( USD ) must obtain pre-approval with an acceptable method of payment, as established by our credit and fraud avoidance department. We may require additional verifications or information before accepting any order.\n\n\n<strong>TYPOGRAPHICAL ERRORS</strong>\n\n\nIn the event a product is listed at an incorrect price or with incorrect information due to typographical error or error in pricing or product information received from our suppliers, RTS shall have the right to refuse or cancel any orders placed for product listed at the incorrect price. RTS shall have the right to refuse or cancel any such orders whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is canceled, RTS shall immediately issue a credit to your credit card account in the amount of the charge.\n\n\n<strong>LIMITATION OF LIABILITY</strong>\n\n\nIn no event shall RTS or any of its subsidiaries or affiliates be liable for any indirect, special, incidental or consequential damages including but not limited to loss of use, loss of data, loss of business or profits. Some localities do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n\n\n<strong>PROCESSING TIME</strong>\n\n\nYour order is thoroughly reviewed by our Credit Card Department to ensure that the order is accurate, the payment method is valid, and you are authorized to use this payment method. Once your order has passed the rigorous review by our Credit Card Department, it is sent to the appropriate department to be completed.\n\n\nNOTE - We do not charge your credit or debit card when a purchase is initialized, however we do attempt to get an authorization on your card for the amount of your order at the time your order is placed. This authorization is not a charge but still may utilize a portion of your credit limit or available funds making those funds or portion of your credit limit unavailable for other use. In the unlikely event that your order is delayed or cancelled the authorization will expire and your credit limit or available funds will again become available for use. The amount of time it takes for an authorization to expire is dependant on the policies of the bank that issued your card and ranges from 1 to 7 business days.\n\n\nPlease note, credit card processing can take up to 3 business days (Depending on the accuracy of the information given to us by the customer.). Further, for security reasons, voice confirmation may be required before we can process your credit card for payment.\n\n\n<strong>CREDIT / DEBIT CARD AUTHORIZATIONS</strong>\n\n\nAn authorization on a credit or debit card is a hold against your banks credit card spending limit. Your bank should release the authorization when the charge is received. A charge is the only time a transfer of funds is completed; an authorization is not a transfer of funds.\n\n\n<strong>DISPUTE RESOLUTION</strong>\n\n\nAGREEMENT TO RESOLVE ALL DISPUTES THROUGH ARBITRATION OR IN SMALL CLAIMS COURT AND AGREEMENT TO WAIVE A RIGHT TO JURY TRIAL AND TO PARTICIPATION IN CLASS ACTIONS\n\n\nYou and RTS agree to resolve any controversy, dispute, or claim arising out of or relating to your purchase of any product or service from RTS by binding Arbitration administered by the American Arbitration Association, or in a small claims court, and judgment on the arbitration award rendered by the Arbitrator(s) may be entered in a court having competent jurisdiction. This agreement to arbitrate is intended to be broadly interpreted and covers all controversies, disputes, claims arising out or relating to your purchase including, but not limited to contract claims, tort claims and statutory claims, or any combination of claims. We agree that the arbitration or small claim proceeding will take place in Allen County, Indiana.\n\n\nWe agree that the American Arbitration Association shall administer the arbitration, and that the American Arbitration Association\'s Commercial Arbitration Rules and Mediation Procedures and Consumer Related Disputes Supplementary Procedures, if applicable, shall apply. These Arbitration Rules may be found on the American Arbitration Association\'s web site at www.adr.org . You and RTS agree that the Arbitration Award maybe taken to a Court of competent jurisdiction to become an enforceable judgment. You and RTS agree that any arbitration under this Agreement will take place on an individual basis. Class arbitrations and class actions are not permitted.\n\n\nIf you wish to begin arbitration against RTS you must file a case with the American Arbitration Association. You may visit the American Arbitration Association\'s web site at www.adr.org to obtain forms and guidance and to learn the procedure for filing a case under this Arbitration Agreement.\n\n\nThis Arbitration Agreement affects you legal rights. An arbitration is resolved by a neutral party and not a judge or jury. There is less discovery and less exchange of information between the parties to an arbitration than might occur in a court proceeding. An arbitration award is final and binding and will only be overturned or reversed by a court in very limited circumstances. You agree that, by entering into this Agreement, you and RTS are each waiving the right to a trial by jury or to participate in a class action.\n\n\n<strong>GOOGLE TRANSLATE</strong>\n\n\nTerms of Use:\n\n\nThe Google Translate service is a means by which translations of English content from our website are provided solely for the convenience of non-English speaking users of the website. The translated content is provided solely by Google and we do not have any input or control over the translated content. The English language version of the content, as provided by RTS is the only definitive and binding version, and we are not bound by the non-English translations provided by Google Translate. The use of the Google Translate functionality and/or content is also subject to standard terms and conditions and the terms of use of our website. These standard terms and conditions and terms of use may be changed by us at any time without notice.\n\n\nUse of Google Translate:\n\n\nThe Google Translate service is free to RTS users and is intended only as a tool to assist in the translation of our website content. Any other uses, including, without limitation, the incorporation of, advertising into, or the placement of advertising associated with, or targeted towards, the Google Translated content, are strictly prohibited. You must use the Google Translate content as provided and you may not edit or modify the text, technology, content or links supplied.\n\n\nRight to Discontinue Service:\n\n\nRTS reserves the right to cease providing Google Translate functionality and/or content at any time without notice. RTS assumes no liability for, and expressly disclaims responsibility for, your use of the Google Translate functionality or content or for your reliance on the accuracy of its translations.\n\n\n<strong>PRIVACY NOTICE</strong>\n\n\nYou can view our privacy notice by clicking <a href=\"http://rasburytech.com/privacy/\">here</a>.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"51449b84-1611-4956-ab88-973ea26fcde5\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1389,353,'_edit_last','1'),(1390,353,'_edit_lock','1491780894:1'),(1391,353,'_wp_page_template','page-templates/full-width-page.php'),(1392,353,'_yoast_wpseo_content_score','30'),(1393,353,'hide_singular_title','1'),(1394,353,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Privacy and Security\";s:4:\"text\";s:13081:\"<strong>INFORMATION COLLECTION AND USE</strong>\n<br><br>\nRasbury Technology Solutions (reffered to as RTS) is the sole owner of information collected on this site. We will not sell, share, or rent this information to any outside parties, except as outlined in this policy. We collect information from our customers to process orders and better serve you with pertinent information, such as order confirmations and order status updates. Information collected includes your name, shipping address, billing address, telephone numbers, e-mail address, and payment information such as your credit card number. We also require you to submit a username and password of your choice for your future access to your account information. To safeguard that your user name and password remain confidential, DO NOT share this information with anyone. If you elect to receive our newsletter or special promotions, your contact information will be used for the delivery of these items. We allow third-party companies to collect non-personally identifiable information when customers visit our site. These companies typically use a cookie or web beacon to collect this information in order to provide advertisements likely to be of interest to you. Our site does not respond to \"Do Not Track\" signals or mechanisms.\n<br><br>\n<strong>REGISTRATION</strong>\n<br><br>\nIn order to process your orders placed on this website, you must first complete the registration form. During registration, you will be required to provide your contact information, which includes your name, e-mail address, telephone number and street address. This information is used to provide you with important RTS services such as automated order status updates via e-mail.\n<br><br>\n<strong>ORDER</strong>\n<br><br>\nMost of the information collected in the registration process will be used to process orders. During the order process, you will have to provide financial information such as your credit card number, expiration date, money order, wire transfer or check information. This information is used for billing purposes and to fulfill your order. If we have trouble processing an order, we will use this contact information to get in touch with you. To properly process your credit card information, we must share your personal and financial information with the merchant bank for authorization and approval. This process is protected by an enhanced security system. See the Security section below for more details on security measures and procedures. We do not share your personal and financial information with any third parties, except those specified in the Sharing section of this policy.\n<br><br>\n<strong>COOKIES</strong>\n<br><br>\nWe customize certain Web page content based upon your browser type and other information provided by our cookie. If you choose to reject the cookie, you can still browse our store but will be unable to use the shopping cart to buy merchandise. The rasburytech.com shopping cart cannot function without cookies enabled so that the necessary information to process your order is retained. If you disable cookies, rasburytech.com will be unable to accept your online order. We will not share any personally identifiable information provided by this cookie with any third party. We will, however, link data stored in cookies to the personally identifiable information you submitted while on our site. This allows us to personalize your shopping experience and discern user preferences to evoke subconscious feelings of familiarity and assurance.\n<br><br>\nSome of our business partners (e.g., advertisers) use cookies on our site. We have no access to or control over these cookies.\nThis privacy statement covers the use of cookies by rasburytech.com only and does not cover the use of cookies by any advertisers.\n<br><br>\n<strong>LOG FILES</strong>\n<br><br>\nWe use IP addresses to analyze trends, administer the site, track user movement, and gather broad demographic information for aggregate use. We do not link IP addresses to personally identifiable information, and we do not distribute or share IP information with any third parties.\n<br><br>\n<strong>SHARING</strong>\n<br><br>\nWe may employ third party companies to perform functions on our behalf. These functions may include order fulfillment, package delivery, marketing assistance, postal and e-mail delivery, customer service, data analysis, and credit processing. The third parties we contract for these purposes have limited access to your personal information and may not use it for other purposes. We may frame or mask another website so that the look, feel and interface simulate the experience of browsing a genuine rasburytech.com web page. Extreme care and discretion is exercised when evaluating third party sites. We only brand third party sites if their organization applies stringent security and privacy practices which parallel our own commitment to safe online shopping.\n<br><br>\nAs our business continues to evolve, we may acquire or sell business units or subsidiaries. Customer information is one of the business assets that would be transferred in these types of transactions. In such a situation, your personally identifiable information would only be used in a manner consistent with our pre-existing Privacy Policy.\n<br><br>\nWe reserve the right to disclose your personally identifiable information as required by law, and when we believe that disclosure is necessary to protect our rights and/or comply with a judicial proceeding, court order, or legal process served on our website.\n<br><br>\n<strong>TESTIMONIALS</strong>\n<br><br>\nThe testimonials section of the rasburytech.com website is for the purpose of sharing positive experiences. The testimonials section is moderated to ensure accurate and positive testimonials. Published testimonials are genuine and are not edited or altered by RTS. RTS reserves the right to post or remove any testimonial at its discretion.\n<br><br>\nBy posting your comment(s) or testimonial(s) (\"Testimonial\") on our website, you give us permission to reprint or use the Testimonial in connection with our business. You also are agreeing to the following: (1) The reprint or use of the Testimonial will be at our discretion and without compensation; (2) We may use the Testimonial with or without any pseudo (pen) name credit; (3) Our right to use the Testimonial is perpetual and may be assigned by us; (4) We may use the Testimonial locally, nationally or globally and such use may be made in any media, information or communication platform (including Internet advertising) currently in use or later developed; and (5) You and not someone else composed and posted the Testimonial.\n<br><br>\nOther than your pseudo (pen) name, which we may or may not use, your personal contact information will not be disclosed in connection with our reprint or use of your Testimonial.\n<br><br>\n<strong>CHILDREN</strong>\n<br><br>\nRTS does not sell products for purchase by children. If you are under the age of 18, you may only use rasburytech.com in the presence of a consenting parent or guardian. We will not knowingly or intentionally collect personal information via the Internet from children under the age of 13. RTS is committed to protecting the welfare and privacy of children.\n<br><br>\n<strong>LINKS</strong>\n<br><br>\nThis website contains links to other sites. Please be aware that RTS is not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site, and to read the privacy statements of each and every website that collects personally identifiable information. This privacy statement applies only to information collected by this website.\n<br><br>\n<strong>SECURITY</strong>\n<br><br>\nRTS takes precautions to protect its customers\' information. When you submit sensitive information via the website, your information is protected both online and offline.\n<br><br>\nWhen our registration/order form asks you to enter sensitive information (such as your credit card number), that information is encrypted and is protected with the best encryption software currently available in the industry - SSL. rasburytech.com uses the most advanced form of SSL software available: 256-bit encryption by Comodo. To learn more about SSL, follow this link www.comodo.com.\n<br><br>\nAccess to all of our users\' information is restricted. RTS operates in a secured and locked facility that requires all employees to check in and wear valid ID badges. Security cameras are positioned throughout the building in conjunction with multiple alarm systems. Only employees who need the information to perform a specific job are granted access to personally identifiable information. If you wish to have your financial information removed at the time of your order, you may opt to have your financial information deleted from our records upon completion of your order. Otherwise, you may contact us at support@rasburytech.com, or call toll free 1-877-854-0346, to request that your information be deleted from our database. For future transactions, you will be required to re-enter your information.\n<br><br>\nAll RTS servers, including web servers and database servers, are housed and maintained in secure locations. Access to the database is strictly monitored and protected from outside access. Internet access is restricted and protected by multiple Checkpoint and Cisco firewalls and password protection. The servers on which we store personally identifiable information are kept in a secured environment, inside a secured and locked room. All backups are stored and locked in a high-level security room. Only personnel with proper security clearance have access to these restricted areas. Tape backups are not permitted to leave the premises without prior authorization.\n<br><br>\nAll employees are kept up-to-date on our security and privacy practices. Every quarter, in addition to any time a new policy is added, RTS employees are notified and/or reminded about the importance of privacy, and what they can do to ensure that customers\' information remains protected at all times.\n<br><br>\nIf you have any questions or concerns about RTS security practices, you can send us an email at support@rasburytech.com.\n<br><br>\n<strong>SPECIAL OFFERS</strong>\n<br><br>\nOur special offers are sent only to customers who grant RTS permission to send them such information.\n<br><br>\nTo honor the privacy of our users, we offer the option to not receive these types of communications. At the time of your order, you may opt to not receive special offers and news by clicking the appropriate field. Furthermore, all special offers are sent via e-mail and include an opt-out link if you no longer wish to receive special offers and news. Customers might still receive intermittent updates on products, services, specials or RTS news. Please reference the Choice/Opt-out section below for further details on how to be removed from our mailing list should you choose to be removed.\n<br><br>\n<strong>CORRECTION / UPDATING / REVIEWING PERSONAL INFORMATION</strong>\n<br><br>\nCustomers may change or review their stored account information such as street address or e-mail address through our website by visiting our Help section. You must have your username and password in order to access your account. In the event you forget both your username and password, please contact our customer service department for assistance.\n<br><br>\n<strong>CHOICE / OPT-OUT</strong>\n<br><br>\nFor customers who wish to opt-out and stop receiving RTS special offers and related news, RTS provides several ways to do so. Users who no longer wish to receive our newsletter or promotional materials may opt-out of receiving these communications by un-checking the \"permission to send\" field when processing their orders. They may also send e-mails to support@rasburytech.com with a request to be removed. Finally, they may use the link provided in all RTS communications to automatically unsubscribe.\n<br><br>\n<strong>NOTIFICATION OF CHANGES</strong>\n<br><br>\nIf we decide to change our Privacy Policy, we will post those changes to this privacy statement, the homepage, and other places we deem appropriate so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we disclose it. We reserve the right to modify this privacy statement at any time, so please review it frequently. If we make material changes to this policy, we will notify you here, by email, or by means of a notice on our homepage.\n<br><br>\nIf you have opted out of receiving communications from RTS, you will still be able to view news of policy changes at www.rasburytech.com. Otherwise, you may e-mail us at support@rasburytech.com or call us at (260) 492-2166 to ask our customer service department about changes and updates.\n<br><br>\n<strong>LAST UPDATE</strong>\n<br><br>\nThe Privacy Policy contained herein became officially effective January 1, 2017.\n<br><br>\nAddress:\n<br><br>\nRasbury Technology Solutions<br>\n14625 Kress Rd.<br>\nRoanoke, IN 46783\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"bd49801e-bdde-4c7c-91c9-eab699288206\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1395,353,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Privacy and Security\";s:4:\"text\";s:13081:\"<strong>INFORMATION COLLECTION AND USE</strong>\n<br><br>\nRasbury Technology Solutions (reffered to as RTS) is the sole owner of information collected on this site. We will not sell, share, or rent this information to any outside parties, except as outlined in this policy. We collect information from our customers to process orders and better serve you with pertinent information, such as order confirmations and order status updates. Information collected includes your name, shipping address, billing address, telephone numbers, e-mail address, and payment information such as your credit card number. We also require you to submit a username and password of your choice for your future access to your account information. To safeguard that your user name and password remain confidential, DO NOT share this information with anyone. If you elect to receive our newsletter or special promotions, your contact information will be used for the delivery of these items. We allow third-party companies to collect non-personally identifiable information when customers visit our site. These companies typically use a cookie or web beacon to collect this information in order to provide advertisements likely to be of interest to you. Our site does not respond to \"Do Not Track\" signals or mechanisms.\n<br><br>\n<strong>REGISTRATION</strong>\n<br><br>\nIn order to process your orders placed on this website, you must first complete the registration form. During registration, you will be required to provide your contact information, which includes your name, e-mail address, telephone number and street address. This information is used to provide you with important RTS services such as automated order status updates via e-mail.\n<br><br>\n<strong>ORDER</strong>\n<br><br>\nMost of the information collected in the registration process will be used to process orders. During the order process, you will have to provide financial information such as your credit card number, expiration date, money order, wire transfer or check information. This information is used for billing purposes and to fulfill your order. If we have trouble processing an order, we will use this contact information to get in touch with you. To properly process your credit card information, we must share your personal and financial information with the merchant bank for authorization and approval. This process is protected by an enhanced security system. See the Security section below for more details on security measures and procedures. We do not share your personal and financial information with any third parties, except those specified in the Sharing section of this policy.\n<br><br>\n<strong>COOKIES</strong>\n<br><br>\nWe customize certain Web page content based upon your browser type and other information provided by our cookie. If you choose to reject the cookie, you can still browse our store but will be unable to use the shopping cart to buy merchandise. The rasburytech.com shopping cart cannot function without cookies enabled so that the necessary information to process your order is retained. If you disable cookies, rasburytech.com will be unable to accept your online order. We will not share any personally identifiable information provided by this cookie with any third party. We will, however, link data stored in cookies to the personally identifiable information you submitted while on our site. This allows us to personalize your shopping experience and discern user preferences to evoke subconscious feelings of familiarity and assurance.\n<br><br>\nSome of our business partners (e.g., advertisers) use cookies on our site. We have no access to or control over these cookies.\nThis privacy statement covers the use of cookies by rasburytech.com only and does not cover the use of cookies by any advertisers.\n<br><br>\n<strong>LOG FILES</strong>\n<br><br>\nWe use IP addresses to analyze trends, administer the site, track user movement, and gather broad demographic information for aggregate use. We do not link IP addresses to personally identifiable information, and we do not distribute or share IP information with any third parties.\n<br><br>\n<strong>SHARING</strong>\n<br><br>\nWe may employ third party companies to perform functions on our behalf. These functions may include order fulfillment, package delivery, marketing assistance, postal and e-mail delivery, customer service, data analysis, and credit processing. The third parties we contract for these purposes have limited access to your personal information and may not use it for other purposes. We may frame or mask another website so that the look, feel and interface simulate the experience of browsing a genuine rasburytech.com web page. Extreme care and discretion is exercised when evaluating third party sites. We only brand third party sites if their organization applies stringent security and privacy practices which parallel our own commitment to safe online shopping.\n<br><br>\nAs our business continues to evolve, we may acquire or sell business units or subsidiaries. Customer information is one of the business assets that would be transferred in these types of transactions. In such a situation, your personally identifiable information would only be used in a manner consistent with our pre-existing Privacy Policy.\n<br><br>\nWe reserve the right to disclose your personally identifiable information as required by law, and when we believe that disclosure is necessary to protect our rights and/or comply with a judicial proceeding, court order, or legal process served on our website.\n<br><br>\n<strong>TESTIMONIALS</strong>\n<br><br>\nThe testimonials section of the rasburytech.com website is for the purpose of sharing positive experiences. The testimonials section is moderated to ensure accurate and positive testimonials. Published testimonials are genuine and are not edited or altered by RTS. RTS reserves the right to post or remove any testimonial at its discretion.\n<br><br>\nBy posting your comment(s) or testimonial(s) (\"Testimonial\") on our website, you give us permission to reprint or use the Testimonial in connection with our business. You also are agreeing to the following: (1) The reprint or use of the Testimonial will be at our discretion and without compensation; (2) We may use the Testimonial with or without any pseudo (pen) name credit; (3) Our right to use the Testimonial is perpetual and may be assigned by us; (4) We may use the Testimonial locally, nationally or globally and such use may be made in any media, information or communication platform (including Internet advertising) currently in use or later developed; and (5) You and not someone else composed and posted the Testimonial.\n<br><br>\nOther than your pseudo (pen) name, which we may or may not use, your personal contact information will not be disclosed in connection with our reprint or use of your Testimonial.\n<br><br>\n<strong>CHILDREN</strong>\n<br><br>\nRTS does not sell products for purchase by children. If you are under the age of 18, you may only use rasburytech.com in the presence of a consenting parent or guardian. We will not knowingly or intentionally collect personal information via the Internet from children under the age of 13. RTS is committed to protecting the welfare and privacy of children.\n<br><br>\n<strong>LINKS</strong>\n<br><br>\nThis website contains links to other sites. Please be aware that RTS is not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site, and to read the privacy statements of each and every website that collects personally identifiable information. This privacy statement applies only to information collected by this website.\n<br><br>\n<strong>SECURITY</strong>\n<br><br>\nRTS takes precautions to protect its customers\' information. When you submit sensitive information via the website, your information is protected both online and offline.\n<br><br>\nWhen our registration/order form asks you to enter sensitive information (such as your credit card number), that information is encrypted and is protected with the best encryption software currently available in the industry - SSL. rasburytech.com uses the most advanced form of SSL software available: 256-bit encryption by Comodo. To learn more about SSL, follow this link www.comodo.com.\n<br><br>\nAccess to all of our users\' information is restricted. RTS operates in a secured and locked facility that requires all employees to check in and wear valid ID badges. Security cameras are positioned throughout the building in conjunction with multiple alarm systems. Only employees who need the information to perform a specific job are granted access to personally identifiable information. If you wish to have your financial information removed at the time of your order, you may opt to have your financial information deleted from our records upon completion of your order. Otherwise, you may contact us at support@rasburytech.com, or call toll free 1-877-854-0346, to request that your information be deleted from our database. For future transactions, you will be required to re-enter your information.\n<br><br>\nAll RTS servers, including web servers and database servers, are housed and maintained in secure locations. Access to the database is strictly monitored and protected from outside access. Internet access is restricted and protected by multiple Checkpoint and Cisco firewalls and password protection. The servers on which we store personally identifiable information are kept in a secured environment, inside a secured and locked room. All backups are stored and locked in a high-level security room. Only personnel with proper security clearance have access to these restricted areas. Tape backups are not permitted to leave the premises without prior authorization.\n<br><br>\nAll employees are kept up-to-date on our security and privacy practices. Every quarter, in addition to any time a new policy is added, RTS employees are notified and/or reminded about the importance of privacy, and what they can do to ensure that customers\' information remains protected at all times.\n<br><br>\nIf you have any questions or concerns about RTS security practices, you can send us an email at support@rasburytech.com.\n<br><br>\n<strong>SPECIAL OFFERS</strong>\n<br><br>\nOur special offers are sent only to customers who grant RTS permission to send them such information.\n<br><br>\nTo honor the privacy of our users, we offer the option to not receive these types of communications. At the time of your order, you may opt to not receive special offers and news by clicking the appropriate field. Furthermore, all special offers are sent via e-mail and include an opt-out link if you no longer wish to receive special offers and news. Customers might still receive intermittent updates on products, services, specials or RTS news. Please reference the Choice/Opt-out section below for further details on how to be removed from our mailing list should you choose to be removed.\n<br><br>\n<strong>CORRECTION / UPDATING / REVIEWING PERSONAL INFORMATION</strong>\n<br><br>\nCustomers may change or review their stored account information such as street address or e-mail address through our website by visiting our Help section. You must have your username and password in order to access your account. In the event you forget both your username and password, please contact our customer service department for assistance.\n<br><br>\n<strong>CHOICE / OPT-OUT</strong>\n<br><br>\nFor customers who wish to opt-out and stop receiving RTS special offers and related news, RTS provides several ways to do so. Users who no longer wish to receive our newsletter or promotional materials may opt-out of receiving these communications by un-checking the \"permission to send\" field when processing their orders. They may also send e-mails to support@rasburytech.com with a request to be removed. Finally, they may use the link provided in all RTS communications to automatically unsubscribe.\n<br><br>\n<strong>NOTIFICATION OF CHANGES</strong>\n<br><br>\nIf we decide to change our Privacy Policy, we will post those changes to this privacy statement, the homepage, and other places we deem appropriate so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we disclose it. We reserve the right to modify this privacy statement at any time, so please review it frequently. If we make material changes to this policy, we will notify you here, by email, or by means of a notice on our homepage.\n<br><br>\nIf you have opted out of receiving communications from RTS, you will still be able to view news of policy changes at www.rasburytech.com. Otherwise, you may e-mail us at support@rasburytech.com or call us at (260) 492-2166 to ask our customer service department about changes and updates.\n<br><br>\n<strong>LAST UPDATE</strong>\n<br><br>\nThe Privacy Policy contained herein became officially effective January 1, 2017.\n<br><br>\nAddress:\n<br><br>\nRasbury Technology Solutions<br>\n14625 Kress Rd.<br>\nRoanoke, IN 46783\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"bd49801e-bdde-4c7c-91c9-eab699288206\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1396,355,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:20:\"Privacy and Security\";s:4:\"text\";s:13073:\"<strong>INFORMATION COLLECTION AND USE</strong>\n<br><br>\nRasbury Technology Solutions (reffered to as RTS) is the sole owner of information collected on this site. We will not sell, share, or rent this information to any outside parties, except as outlined in this policy. We collect information from our customers to process orders and better serve you with pertinent information, such as order confirmations and order status updates. Information collected includes your name, shipping address, billing address, telephone numbers, e-mail address, and payment information such as your credit card number. We also require you to submit a username and password of your choice for your future access to your account information. To safeguard that your user name and password remain confidential, DO NOT share this information with anyone. If you elect to receive our newsletter or special promotions, your contact information will be used for the delivery of these items. We allow third-party companies to collect non-personally identifiable information when customers visit our site. These companies typically use a cookie or web beacon to collect this information in order to provide advertisements likely to be of interest to you. Our site does not respond to \"Do Not Track\" signals or mechanisms.\n<br><br>\n<strong>REGISTRATION</strong>\n<br><br>\nIn order to process your orders placed on this website, you must first complete the registration form. During registration, you will be required to provide your contact information, which includes your name, e-mail address, telephone number and street address. This information is used to provide you with important RTS services such as automated order status updates via e-mail.\n<br><br>\n<strong>ORDER</strong>\n<br><br>\nMost of the information collected in the registration process will be used to process orders. During the order process, you will have to provide financial information such as your credit card number, expiration date, money order, wire transfer or check information. This information is used for billing purposes and to fulfill your order. If we have trouble processing an order, we will use this contact information to get in touch with you. To properly process your credit card information, we must share your personal and financial information with the merchant bank for authorization and approval. This process is protected by an enhanced security system. See the Security section below for more details on security measures and procedures. We do not share your personal and financial information with any third parties, except those specified in the Sharing section of this policy.\n<br><br>\n<strong>COOKIES</strong>\n<br><br>\nWe customize certain Web page content based upon your browser type and other information provided by our cookie. If you choose to reject the cookie, you can still browse our store but will be unable to use the shopping cart to buy merchandise. The rasburytech.com shopping cart cannot function without cookies enabled so that the necessary information to process your order is retained. If you disable cookies, rasburytech.com will be unable to accept your online order. We will not share any personally identifiable information provided by this cookie with any third party. We will, however, link data stored in cookies to the personally identifiable information you submitted while on our site. This allows us to personalize your shopping experience and discern user preferences to evoke subconscious feelings of familiarity and assurance.\n<br><br>\nSome of our business partners (e.g., advertisers) use cookies on our site. We have no access to or control over these cookies.\nThis privacy statement covers the use of cookies by rasburytech.com only and does not cover the use of cookies by any advertisers.\n<br><br>\n<strong>LOG FILES</strong>\n<br><br>\nWe use IP addresses to analyze trends, administer the site, track user movement, and gather broad demographic information for aggregate use. We do not link IP addresses to personally identifiable information, and we do not distribute or share IP information with any third parties.\n<br><br>\n<strong>SHARING</strong>\n<br><br>\nWe may employ third party companies to perform functions on our behalf. These functions may include order fulfillment, package delivery, marketing assistance, postal and e-mail delivery, customer service, data analysis, and credit processing. The third parties we contract for these purposes have limited access to your personal information and may not use it for other purposes. We may frame or mask another website so that the look, feel and interface simulate the experience of browsing a genuine rasburytech.com web page. Extreme care and discretion is exercised when evaluating third party sites. We only brand third party sites if their organization applies stringent security and privacy practices which parallel our own commitment to safe online shopping.\n<br><br>\nAs our business continues to evolve, we may acquire or sell business units or subsidiaries. Customer information is one of the business assets that would be transferred in these types of transactions. In such a situation, your personally identifiable information would only be used in a manner consistent with our pre-existing Privacy Policy.\n<br><br>\nWe reserve the right to disclose your personally identifiable information as required by law, and when we believe that disclosure is necessary to protect our rights and/or comply with a judicial proceeding, court order, or legal process served on our website.\n<br><br>\n<strong>TESTIMONIALS</strong>\n<br><br>\nThe testimonials section of the rasburytech.com website is for the purpose of sharing positive experiences. The testimonials section is moderated to ensure accurate and positive testimonials. Published testimonials are genuine and are not edited or altered by RTS. RTS reserves the right to post or remove any testimonial at its discretion.\n<br><br>\nBy posting your comment(s) or testimonial(s) (\"Testimonial\") on our website, you give us permission to reprint or use the Testimonial in connection with our business. You also are agreeing to the following: (1) The reprint or use of the Testimonial will be at our discretion and without compensation; (2) We may use the Testimonial with or without any pseudo (pen) name credit; (3) Our right to use the Testimonial is perpetual and may be assigned by us; (4) We may use the Testimonial locally, nationally or globally and such use may be made in any media, information or communication platform (including Internet advertising) currently in use or later developed; and (5) You and not someone else composed and posted the Testimonial.\n<br><br>\nOther than your pseudo (pen) name, which we may or may not use, your personal contact information will not be disclosed in connection with our reprint or use of your Testimonial.\n<br><br>\n<strong>CHILDREN</strong>\n<br><br>\nRTS does not sell products for purchase by children. If you are under the age of 18, you may only use rasburytech.com in the presence of a consenting parent or guardian. We will not knowingly or intentionally collect personal information via the Internet from children under the age of 13. RTS is committed to protecting the welfare and privacy of children.\n<br><br>\n<strong>LINKS</strong>\n<br><br>\nThis website contains links to other sites. Please be aware that RTS is not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site, and to read the privacy statements of each and every website that collects personally identifiable information. This privacy statement applies only to information collected by this website.\n<br><br>\n<strong>SECURITY</strong>\n<br><br>\nRTS takes precautions to protect its customers\' information. When you submit sensitive information via the website, your information is protected both online and offline.\n<br><br>\nWhen our registration/order form asks you to enter sensitive information (such as your credit card number), that information is encrypted and is protected with the best encryption software currently available in the industry - SSL. rasburytech.com uses the most advanced form of SSL software available: 256-bit encryption by Comodo. To learn more about SSL, follow this link www.comodo.com.\n<br><br>\nAccess to all of our users\' information is restricted. RTS operates in a secured and locked facility that requires all employees to check in and wear valid ID badges. Security cameras are positioned throughout the building in conjunction with multiple alarm systems. Only employees who need the information to perform a specific job are granted access to personally identifiable information. If you wish to have your financial information removed at the time of your order, you may opt to have your financial information deleted from our records upon completion of your order. Otherwise, you may contact us at support@rasburytech.com, or call toll free 1-877-854-0346, to request that your information be deleted from our database. For future transactions, you will be required to re-enter your information.\n<br><br>\nAll RTS servers, including web servers and database servers, are housed and maintained in secure locations. Access to the database is strictly monitored and protected from outside access. Internet access is restricted and protected by multiple Checkpoint and Cisco firewalls and password protection. The servers on which we store personally identifiable information are kept in a secured environment, inside a secured and locked room. All backups are stored and locked in a high-level security room. Only personnel with proper security clearance have access to these restricted areas. Tape backups are not permitted to leave the premises without prior authorization.\n<br><br>\nAll employees are kept up-to-date on our security and privacy practices. Every quarter, in addition to any time a new policy is added, RTS employees are notified and/or reminded about the importance of privacy, and what they can do to ensure that customers\' information remains protected at all times.\n<br><br>\nIf you have any questions or concerns about RTS security practices, you can send us an email at support@rasburytech.com.\n<br><br>\n<strong>SPECIAL OFFERS</strong>\n<br><br>\nOur special offers are sent only to customers who grant RTS permission to send them such information.\n<br><br>\nTo honor the privacy of our users, we offer the option to not receive these types of communications. At the time of your order, you may opt to not receive special offers and news by clicking the appropriate field. Furthermore, all special offers are sent via e-mail and include an opt-out link if you no longer wish to receive special offers and news. Customers might still receive intermittent updates on products, services, specials or RTS news. Please reference the Choice/Opt-out section below for further details on how to be removed from our mailing list should you choose to be removed.\n<br><br>\n<strong>CORRECTION / UPDATING / REVIEWING PERSONAL INFORMATION</strong>\n<br><br>\nCustomers may change or review their stored account information such as street address or e-mail address through our website by visiting our Help section. You must have your username and password in order to access your account. In the event you forget both your username and password, please contact our customer service department for assistance.\n<br><br>\n<strong>CHOICE / OPT-OUT</strong>\n<br><br>\nFor customers who wish to opt-out and stop receiving RTS special offers and related news, RTS provides several ways to do so. Users who no longer wish to receive our newsletter or promotional materials may opt-out of receiving these communications by un-checking the \"permission to send\" field when processing their orders. They may also send e-mails to support@rasburytech.com with a request to be removed. Finally, they may use the link provided in all RTS communications to automatically unsubscribe.\n<br><br>\n<strong>NOTIFICATION OF CHANGES</strong>\n<br><br>\nIf we decide to change our Privacy Policy, we will post those changes to this privacy statement, the homepage, and other places we deem appropriate so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we disclose it. We reserve the right to modify this privacy statement at any time, so please review it frequently. If we make material changes to this policy, we will notify you here, by email, or by means of a notice on our homepage.\n<br><br>\nIf you have opted out of receiving communications from RTS, you will still be able to view news of policy changes at www.rasburytech.com. Otherwise, you may e-mail us at support@rasburytech.com or call us at (260) 492-2166 to ask our customer service department about changes and updates.\n<br><br>\n<strong>LAST UPDATE</strong>\n<br><br>\nThe Privacy Policy contained herein became officially effective January 1, 2017.\n<br><br>\nAddress:\n<br><br>\nRasbury Technology Solutions\n14625 Kress Rd.\nRoanoke, IN 46783\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"bd49801e-bdde-4c7c-91c9-eab699288206\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1397,81,'_panels_data_preview','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3034:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1398,81,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point of sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1415,356,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3292:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nThere are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1399,356,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1400,358,'_wp_attached_file','2017/02/feat_overview2.png'),(1401,358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:26:\"2017/02/feat_overview2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"feat_overview2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:24:\"feat_overview2-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:26:\"feat_overview2-272x179.png\";s:5:\"width\";i:272;s:6:\"height\";i:179;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:{}}}'),(1402,359,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:1;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1414,365,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:315:\"PointOS Professional is a powerful, easy-to-use point-of-sale system designed by hospitality professionals. \n<br><br>\nIts unprecedented ease of installation and use eliminates the need for training or costly setup, while its battle tested, high performance features make it ideal for critical day-to-day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1403,360,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1404,361,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:315:\"PointOS Professional is a powerful, easy-to-use point-of-sale system designed by hospitality professionals. \n<br><br>\nIts unprecedented ease of installation and use eliminates the need for training or costly setup, while its battle tested, high performance features make it ideal for critical day-to-day operations.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1405,356,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:315:\"PointOS Professional is a powerful, easy-to-use point-of-sale system designed by hospitality professionals. \n<br><br>\nIts unprecedented ease of installation and use eliminates the need for training or costly setup, while its battle tested, high performance features make it ideal for critical day-to-day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1406,362,'_wp_attached_file','2017/02/feat_cc2.png'),(1407,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:20:\"2017/02/feat_cc2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"feat_cc2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:18:\"feat_cc2-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:20:\"feat_cc2-272x179.png\";s:5:\"width\";i:272;s:6:\"height\";i:179;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:{}}}'),(1408,363,'_wp_attached_file','2017/02/feat_cost2.png'),(1409,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:22:\"2017/02/feat_cost2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"feat_cost2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:20:\"feat_cost2-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"feat_cost2-272x179.png\";s:5:\"width\";i:272;s:6:\"height\";i:179;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:{}}}'),(1410,356,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:315:\"PointOS Professional is a powerful, easy-to-use point-of-sale system designed by hospitality professionals. \n<br><br>\nIts unprecedented ease of installation and use eliminates the need for training or costly setup, while its battle tested, high performance features make it ideal for critical day-to-day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1411,356,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:315:\"PointOS Professional is a powerful, easy-to-use point-of-sale system designed by hospitality professionals. \n<br><br>\nIts unprecedented ease of installation and use eliminates the need for training or costly setup, while its battle tested, high performance features make it ideal for critical day-to-day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ea9229a2-d09f-431c-9537-51f5af707455\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"97c50ada-974a-457b-b7a2-2225a25c5d8e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:24:{s:13:\"_widget_title\";s:0:\"\";s:5:\"title\";s:9:\"Read More\";s:7:\"content\";s:3376:\"<p>PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.</p><ul><ul><li>PointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.</li><li>Order tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.</li><li>Tax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.</li><li>Employee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.</li><li>The customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.</li><li>PointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.</li><li>The Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.</li><li>There are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!</li><li>PointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.</li><li>PointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.</li></ul></ul><p>These and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors. Try PointOS systems today for a thirty day free trial of our software.</p>\";s:7:\"show_on\";s:3:\"btn\";s:9:\"btn_label\";s:9:\"READ MORE\";s:11:\"btn_bgcolor\";s:0:\"\";s:9:\"btn_color\";s:0:\"\";s:5:\"image\";s:0:\"\";s:10:\"image_size\";s:5:\"large\";s:9:\"text_size\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:5:\"align\";s:4:\"left\";s:10:\"show_delay\";s:1:\"2\";s:4:\"size\";s:1:\"s\";s:8:\"paddings\";s:7:\"default\";s:9:\"animation\";s:6:\"fadeIn\";s:13:\"border_radius\";s:1:\"0\";s:15:\"overlay_bgcolor\";s:16:\"rgba(0,0,0,0.75)\";s:13:\"title_bgcolor\";s:7:\"#f2f2f2\";s:15:\"title_textcolor\";s:7:\"#666666\";s:15:\"content_bgcolor\";s:7:\"#ffffff\";s:17:\"content_textcolor\";s:7:\"#333333\";s:8:\"el_class\";s:0:\"\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:15:\"CL_Widget_Modal\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"be992aac-dabf-4f1d-ac23-9ce267785e88\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:0;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1412,364,'_wp_attached_file','2017/02/feat_setup2.png'),(1413,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:23:\"2017/02/feat_setup2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"feat_setup2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:21:\"feat_setup2-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:23:\"feat_setup2-272x179.png\";s:5:\"width\";i:272;s:6:\"height\";i:179;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:{}}}'),(1416,366,'_wp_attached_file','2017/02/mercury.png'),(1417,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:19:\"2017/02/mercury.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:{}}}'),(1418,367,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3292:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nThere are multiple comprehensive and simple ways to learn how the system works as well. Check out our many demonstration videos and our customer testimonials to see how much people are loving the system and how it can work for you. The free trial allows you to have a hands-on learning experience with the software that feels rewarding and, more importantly, provides a clear system that allows you to save money. If you like it enough you can even contribute your own testimonial!\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the PointOS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare our offered features with our competitors.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1419,368,'_wp_attached_file','2017/02/starcert.png'),(1420,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2017/02/starcert.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:{}}}'),(1421,369,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1422,370,'_wp_attached_file','2017/02/rspa.png'),(1423,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:16:\"2017/02/rspa.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:{}}}'),(1424,371,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1425,356,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1426,356,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1427,372,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1428,373,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 3 months! Dominate your competition today!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1429,67,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:5:\"image\";i:660;s:14:\"image_fallback\";s:10:\"http://660\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:19:\"_sow_form_timestamp\";s:13:\"1498593288609\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1430,374,'_wp_attached_file','2017/02/4k-ultra-hd-nvr-system-lorex.png'),(1431,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:530;s:6:\"height\";i:186;s:4:\"file\";s:40:\"2017/02/4k-ultra-hd-nvr-system-lorex.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"4k-ultra-hd-nvr-system-lorex-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"4k-ultra-hd-nvr-system-lorex-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:40:\"4k-ultra-hd-nvr-system-lorex-350x186.png\";s:5:\"width\";i:350;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:38:\"4k-ultra-hd-nvr-system-lorex-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:40:\"4k-ultra-hd-nvr-system-lorex-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1432,67,'_panels_data_preview','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:643:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1433,375,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:614:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p)<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}');
INSERT INTO `wpiq_postmeta` VALUES (1434,376,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:614:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p)<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1435,377,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:615:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1436,378,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:615:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1437,379,'_wp_attached_file','2017/02/Logo_white.gif'),(1438,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:218;s:4:\"file\";s:22:\"2017/02/Logo_white.gif\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Logo_white-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Logo_white-300x103.gif\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"Logo_white-350x218.gif\";s:5:\"width\";i:350;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/gif\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:20:\"Logo_white-90x90.gif\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"Logo_white-272x182.gif\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1440,381,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:643:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1439,380,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:643:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1441,382,'_wp_attached_file','2017/02/logo_att.png'),(1442,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:248;s:4:\"file\";s:20:\"2017/02/logo_att.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo_att-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo_att-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:20:\"logo_att-350x248.png\";s:5:\"width\";i:350;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:18:\"logo_att-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:20:\"logo_att-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1443,47,'_panels_data_preview','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:714:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With Syn248, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1444,47,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:432;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1445,384,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1446,385,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1447,386,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:714:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With Syn248, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1448,388,'_wp_attached_file','2017/02/ADT-Logo-Hex-Big_white.png'),(1449,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:249;s:6:\"height\";i:114;s:4:\"file\";s:34:\"2017/02/ADT-Logo-Hex-Big_white.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"ADT-Logo-Hex-Big_white-150x114.png\";s:5:\"width\";i:150;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:32:\"ADT-Logo-Hex-Big_white-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;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:{}}}'),(1450,78,'_panels_data_preview','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"ADT Authorized Installer\";s:4:\"text\";s:31:\"More information coming soon...\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1451,78,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:26:\"Why Choose ADT Monitoring?\";s:4:\"text\";s:554:\"Your home is protected around‑the‑clock by six interconnected ADT Customer Monitoring Centers. If a sensor is triggered in your home an ADT monitoring dispatch operator will immediately contact you to make sure everything is okay. ADT monitoring will contact and dispatch the proper emergency service for a fast response to help protect your home and family.\n<br><br>\nWith ADT Pulse®, your home is always at your fingertips. Use your smartphone, tablet or computer to manage your home security system from virtually anywhere with an ADT Pulse®plan.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:14:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:19:\"_sow_form_timestamp\";s:0:\"\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:5:\"image\";i:931;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59c06042deca3\";s:19:\"_sow_form_timestamp\";s:13:\"1505779931872\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"e97959c7-f1a5-45ea-8bda-6d9cce0ab2e8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:3;a:9:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"59544c30832f8\";s:19:\"_sow_form_timestamp\";s:13:\"1498696794027\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"17d815cb-c15a-4278-b230-1206517982de\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1452,390,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3041:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\nbr><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased on the RTS site.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";i:1;}}}'),(1453,84,'_panels_data_preview','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:25:\"Top Quality Audio / Video\";s:4:\"text\";s:31:\"More information coming soon...\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;}}}'),(1454,84,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1455,392,'_wp_attached_file','2017/03/1476-200.png'),(1456,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2017/03/1476-200.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"1476-200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:18:\"1476-200-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:20:\"1476-200-200x182.png\";s:5:\"width\";i:200;s:6:\"height\";i:182;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:{}}}'),(1457,393,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:23:\"Your Payment Has Failed\";s:4:\"text\";s:114:\"Please try your payment again. If you feel this error is not correct please contact us immediately for assistance.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"2dbe10de-f483-494c-8e23-ebd3f269e57c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.5;}i:2;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.25;}}}'),(1458,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1459,394,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:459:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1520:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1460,395,'_yst_is_cornerstone',''),(1461,395,'_edit_last','1'),(1462,395,'_edit_lock','1492019997:1'),(1463,395,'_wp_page_template','page-templates/full-width-page.php'),(1464,395,'_yoast_wpseo_content_score','30'),(1466,395,'hide_singular_title','1'),(1467,397,'amount','19999'),(1468,397,'type','subscription'),(1469,397,'description','Rasbury Technology Solutions'),(1842,568,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1486,398,'amount','19999'),(1487,398,'type','subscription'),(1488,398,'description','Rasbury Technology Solutions'),(1489,399,'amount','19999'),(1490,399,'type','subscription'),(1491,399,'description','Rasbury Technology Solutions'),(1492,258,'_yst_is_cornerstone',''),(1493,400,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:189:\"Thank you for making a payment. Your payment has processed correctly.\n<br><br>\nYou should receive an email confirmation shortly.\n<br><br>\n If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1494,401,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:202:\"• Thank you for making a payment.\n<br>\n• Your payment has processed correctly.\n<br>\n• You should receive an email confirmation shortly.\n<br>\n•  If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1495,402,'_yst_is_cornerstone',''),(1500,344,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:202:\"• Thank you for making a payment.\n<br>\n• Your payment has processed correctly.\n<br>\n• You should receive an email confirmation shortly.\n<br>\n•  If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1496,403,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:19:\"captainform_form_id\";i:787287;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"41c2f56a-1f48-43e3-8da1-5f25d3625878\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:31:\"captainform_display_as_lightbox\";i:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1497,403,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:19:\"captainform_form_id\";i:787287;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"41c2f56a-1f48-43e3-8da1-5f25d3625878\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:31:\"captainform_display_as_lightbox\";i:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1498,404,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:19:\"captainform_form_id\";i:787287;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"41c2f56a-1f48-43e3-8da1-5f25d3625878\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1499,405,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:14:{s:19:\"captainform_form_id\";i:787287;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:18:\"Captainform_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"41c2f56a-1f48-43e3-8da1-5f25d3625878\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1501,344,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:202:\"• Thank you for making a payment.\n<br>\n• Your payment has processed correctly.\n<br>\n• You should receive an email confirmation shortly.\n<br>\n•  If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1502,344,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:202:\"• Thank you for making a payment.\n<br>\n• Your payment has processed correctly.\n<br>\n• You should receive an email confirmation shortly.\n<br>\n•  If you have any questions, contact us immediately.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1503,408,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:301:\"Thank you for making a payment. Your payment has processed correctly.\n<br>\nYou should receive an email confirmation shortly.\n<br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\nPlease complete the web services information form if you are purchasing subscription services.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1504,408,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:301:\"Thank you for making a payment. Your payment has processed correctly.\n<br>\nYou should receive an email confirmation shortly.\n<br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\nPlease complete the web services information form if you are purchasing subscription services.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1505,409,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:301:\"Thank you for making a payment. Your payment has processed correctly.\n<br>\nYou should receive an email confirmation shortly.\n<br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\nPlease complete the web services information form if you are purchasing subscription services.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1506,410,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:310:\"Thank you for making a payment. Your payment has processed correctly.\n<br><br>\nYou should receive an email confirmation shortly.\n<br><br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\n*Please complete the web services information form if you are purchasing subscription services.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1507,410,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:310:\"Thank you for making a payment. Your payment has processed correctly.\n<br><br>\nYou should receive an email confirmation shortly.\n<br><br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\n*Please complete the web services information form if you are purchasing subscription services.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1508,411,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:13:{s:5:\"image\";i:347;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58e68e9e6e78d\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"9ddbfb30-4f6c-4745-802d-aaeb03dfdddb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:27:\"Your Payment Was Successful\";s:4:\"text\";s:310:\"Thank you for making a payment. Your payment has processed correctly.\n<br><br>\nYou should receive an email confirmation shortly.\n<br><br>\nIf you are paying an invoice or making a down payment you are done.\n<br><br>\n*Please complete the web services information form if you are purchasing subscription services.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"cb4ac11b-77ee-4abf-805b-bf85945b1850\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:13:\"Complete Form\";s:3:\"url\";s:9:\"post: 395\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58ee732d1c847\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"2cf6895e-dc7c-494f-a526-354127bbf7c2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:3;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:2;s:6:\"weight\";d:0.25;s:5:\"style\";a:0:{}}}}'),(1516,416,'_wp_attached_file','2017/02/1yamaha-copy.png'),(1517,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2265;s:6:\"height\";i:840;s:4:\"file\";s:24:\"2017/02/1yamaha-copy.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-300x111.png\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-768x285.png\";s:5:\"width\";i:768;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"1yamaha-copy-1024x380.png\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-700x550.png\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:22:\"1yamaha-copy-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"1yamaha-copy-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1513,414,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:25:\"Top Quality Audio / Video\";s:4:\"text\";s:31:\"More information coming soon...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:413;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1514,414,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:25:\"Top Quality Audio / Video\";s:4:\"text\";s:31:\"More information coming soon...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:413;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1515,415,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:25:\"Top Quality Audio / Video\";s:4:\"text\";s:31:\"More information coming soon...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:413;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1518,417,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:25:\"Top Quality Audio / Video\";s:4:\"text\";s:31:\"More information coming soon...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1519,418,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1520,419,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1521,420,'_wp_attached_file','2017/02/MusicCast-logo.png'),(1522,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:84;s:4:\"file\";s:26:\"2017/02/MusicCast-logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MusicCast-logo-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"MusicCast-logo-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"MusicCast-logo-350x84.png\";s:5:\"width\";i:350;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:24:\"MusicCast-logo-90x84.png\";s:5:\"width\";i:90;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"MusicCast-logo-272x84.png\";s:5:\"width\";i:272;s:6:\"height\";i:84;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:{}}}'),(1523,421,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1524,421,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:2;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1525,422,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:7:\"default\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1526,423,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1527,419,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1531,426,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:6:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1528,424,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";b:0;s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:6:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1529,424,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";b:0;s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:6:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1530,425,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";b:0;s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:6:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1572,447,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1532,427,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1533,427,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1534,428,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1541,432,'_wp_attached_file','2017/02/syn248_deskphone.png'),(1542,432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2017/02/syn248_deskphone.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"syn248_deskphone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"syn248_deskphone-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:28:\"syn248_deskphone-600x550.png\";s:5:\"width\";i:600;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:28:\"syn248_deskphone-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:26:\"syn248_deskphone-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:28:\"syn248_deskphone-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1537,47,'_yst_is_cornerstone',''),(1538,430,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:429;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1539,430,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:429;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1540,431,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:429;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1543,433,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:432;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1544,81,'_yst_is_cornerstone',''),(1545,434,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:11:\"Easy To Use\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1546,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Google Local\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Local Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Keyword Basic\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:104:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Keyword Blast\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:92:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Mega Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:110:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Domination Pack\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:101:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Google Adwords\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}i:1;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:3;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:5;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:7;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:9;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:10;a:2:{s:4:\"grid\";i:5;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:11;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:12;a:2:{s:4:\"grid\";i:6;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:13;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:14;a:2:{s:4:\"grid\";i:7;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:15;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:16;a:2:{s:4:\"grid\";i:8;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:17;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:18;a:2:{s:4:\"grid\";i:9;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:19;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:20;a:2:{s:4:\"grid\";i:10;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:21;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:22;a:2:{s:4:\"grid\";i:11;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1552,437,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1548,435,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1549,435,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1550,436,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1551,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:277:\"These are descriptions of our online marketing services. Click the button to the right of the description<br>\nto initiate a payment window. These are subscription services and will be billed monthly<br>\nfor a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1553,437,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1554,438,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1555,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1556,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1557,300,'panels_data','a:3:{s:7:\"widgets\";a:20:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:12:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:23:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1558,439,'panels_data','a:3:{s:7:\"widgets\";a:22:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1559,439,'panels_data','a:3:{s:7:\"widgets\";a:22:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1560,440,'panels_data','a:3:{s:7:\"widgets\";a:22:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1563,300,'panels_data','a:3:{s:7:\"widgets\";a:22:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1569,445,'_wp_attached_file','2017/02/4aa9490a37df4942e549a02005150597.png'),(1570,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:923;s:6:\"height\";i:323;s:4:\"file\";s:44:\"2017/02/4aa9490a37df4942e549a02005150597.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-768x269.png\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-700x323.png\";s:5:\"width\";i:700;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-650x323.png\";s:5:\"width\";i:650;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-350x323.png\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:42:\"4aa9490a37df4942e549a02005150597-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:44:\"4aa9490a37df4942e549a02005150597-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1566,443,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:442;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1567,443,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:442;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1568,444,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:442;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1571,446,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1573,447,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1574,448,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1575,416,'_wp_attachment_image_alt','Yamaha'),(1576,420,'_wp_attachment_image_alt','MusicCast'),(1667,484,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1577,449,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:38:\"Commercial & Residential Audio / Video\";s:4:\"text\";s:324:\"Yamaha is one of the most well known companies in quality commercial and residential audio equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:8:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:0;}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:0;}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:8:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:0;}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:8:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:0;}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:8:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:1;}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:8:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}s:10:\"cell_index\";i:0;}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1578,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";i:1;}}}'),(1579,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:2;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:3;a:2:{s:4:\"grid\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:4;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:5;a:2:{s:4:\"grid\";i:2;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:6;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:7;a:2:{s:4:\"grid\";i:3;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}i:8;a:2:{s:4:\"grid\";i:4;s:6:\"weight\";i:1;}}}'),(1815,553,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1581,450,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1582,450,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1583,451,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:237:\"Commercial On-site = $75/hr\n<br><br>\nResidential On-site = $60/hr\n<br><br>\nCable Installation = $50/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1584,452,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1585,452,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1586,453,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:471:\"Why Should You Have AVID Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1587,454,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1588,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1589,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1590,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1591,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1592,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1593,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1594,300,'panels_data','a:3:{s:7:\"widgets\";a:23:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:11:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:21:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1598,457,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1595,455,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:12:\"$299.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1596,455,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:5;a:4:{s:5:\"title\";s:12:\"$299.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1597,456,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$299.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1599,457,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1600,458,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}');
INSERT INTO `wpiq_postmeta` VALUES (1601,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:95:\"[direct-stripe type=\"subscription\" name=\"RTS Social Litel\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1602,459,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1603,459,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1604,460,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1605,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1606,461,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1607,461,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1608,462,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1609,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:308:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:310:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them at an affordable rate.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1625,470,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1610,463,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1611,463,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1612,464,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1613,465,'_wp_attached_file','2017/04/logo.jpg'),(1614,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:125;s:4:\"file\";s:16:\"2017/04/logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"logo-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-700x125.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-650x125.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-350x125.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:14:\"logo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:16:\"logo-272x125.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1615,466,'_wp_attached_file','2017/04/cropped-logo.jpg'),(1616,466,'_wp_attachment_context','custom-logo'),(1617,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:868;s:6:\"height\";i:125;s:4:\"file\";s:24:\"2017/04/cropped-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cropped-logo-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"cropped-logo-768x111.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-700x125.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-650x125.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-350x125.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:22:\"cropped-logo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"cropped-logo-272x125.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1622,81,'_yoast_wpseo_focuskw_text_input','point of sale'),(1623,81,'_yoast_wpseo_focuskw','point of sale'),(1624,81,'_yoast_wpseo_linkdex','73'),(1626,20,'_yoast_wpseo_focuskw_text_input','internet marketing'),(1627,20,'_yoast_wpseo_focuskw','internet marketing'),(1628,20,'_yoast_wpseo_title','Rasbury Technology Solutions | Internet Marketing | Fort Wayne'),(1629,20,'_yoast_wpseo_metadesc','RTS has the best web services. We can help with your internet identity. We can design, implement and use internet marketing to catapult your online identity'),(1630,20,'_yoast_wpseo_linkdex','85'),(1631,81,'_yoast_wpseo_title','Rasbury Technology Solutions | Point of Sale | Fort Wayne'),(1632,81,'_yoast_wpseo_metadesc','RTS can simplify your Point of Sale needs. We have all in one solutions for bars, restaurants, coffee shops and more. Fully customizable and easy to use.'),(1636,473,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1633,471,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1634,471,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1635,472,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point-of-sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1845,571,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point of sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1637,474,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:36:\"Robust and Easy to Use Point of Sale\";s:4:\"text\";s:3035:\"PointOS Professional is a powerfully efficient, highly intuitive point of sale system designed by hospitality professionals to make organization and payment processing easy for managers and employees alike. Its unprecedented ease of installation and use eliminates the need for extensive training or costly setup, while its battle tested, high performance features make it ideal for critical day- to-day operations. Some notable features include both simple and advanced order entry options, customer management and order maintenance (including sales tracking and incident reports), timed pricing, and even music integration. Many options and features are cleverly interlocked within a simple to understand design that allows anyone to use it.\n<br><br>\nPointOS offers many security features for both employees and managers, including four- digit access codes and security card options. Despite its ergonomic design, PointOS is also completely secure and reliable.\n<br><br>\nOrder tracking and delivery mapping has never been easier. Using integrated maps, you can determine any location and even find delivery instructions. Delivery orders are even specially marked with a designated icon.\n<br><br>\nTax reports and sales receipts, along with careful inventory records can all be stored in our system. With our convenient inventory system, you spend less time punching numbers and you can spend more time taking care of your business and customers.\n<br><br>\nEmployee email and messaging systems are additional features, connected online and to recorded schedules. Employees can be easily notified of important events or notices at the touch of a button.\n<br><br>\nThe customer and tab tracking allows to create custom profiles for each specific customer. This allows the employees to properly and easily identify with certain customers, like regulars that deserve extra attention or special treatment.\n<br><br>\nPointOS utilizes Cloud Memory technology, meaning you won\'t lose important information and it\'s all backed up for your convenience.\n<br><br>\nThe Manager\'s Dashboard is a unique and specific feature specifically for essential information and common features.\n<br><br>\nPointOS is designed to fit a business of any size, from one computer to several network stations. It\'s also meant to be easily used by anyone on staff: servers, wait staff, and bartenders.\n<br><br>\nPointOS can work on any Windows-based computer. We recommend a touch screen, receipt printer, cash drawer, and card processor for integrated card processing. All of those accessories can be purchased from RTS.\n<br><br>\nThese and many more options are available at the touch of a finger. All with an eye-catching and practical visual design made with the user in mind. Compare PointOS offered features with the competitors.\n<br><br>\nWith PointOS, credit cards are easy. Choose Vantiv for an out-of-the-box, fully integrated solution. Our strong partnership ensures you get the lowest rates, plus online reporting, fast automatic deposits, and customer gift cards.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"10cd623c-c73c-422c-93eb-c794e0ef059e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:358;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5d769b2b\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b01c44d8-5184-455f-967b-8e7882877764\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:362;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5df3dd57\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"56b5d863-6260-4c67-b63e-ec987a771a53\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:363;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac5ea10d3e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"4bec2875-9027-40ad-a598-84b40cc0cff1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:13:{s:5:\"image\";i:364;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eac87404476\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f3d819fa-c112-4c80-855b-a824f646407c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:366;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eacaf7850d6\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ef2f0232-7db7-4823-9ccd-6cc510a5b32e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:13:{s:5:\"image\";i:368;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9062109a\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"15b5b29a-b91b-4e48-9cd2-2e393b6582a6\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:370;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eae9585bca9\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"61800104-3638-44cc-995e-effc0e2b3331\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaea73cd583\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"df8beb6b-053d-4f63-bd9e-a38cad4e7a80\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1639,475,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:643:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance camera resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1640,67,'_yoast_wpseo_focuskw_text_input','surveillance cameras'),(1641,67,'_yoast_wpseo_focuskw','surveillance cameras'),(1642,67,'_yoast_wpseo_title','Rasbury Technology Solutions | Surveillance Cameras | Fort Wayne'),(1643,67,'_yoast_wpseo_metadesc','RTS can survey, quote and install the best and affordable surveillance cameras on earth. Let us help you monitor your valuables with the best technology'),(1644,67,'_yoast_wpseo_linkdex','71'),(1645,476,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:24:\"Flir® Camera Technology\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1646,477,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:42:\"Flir® Technology For Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1647,478,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1648,479,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1649,479,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1650,480,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1651,387,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"ADT Authorized Installer\";s:4:\"text\";s:31:\"More information coming soon...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;}i:1;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(1653,481,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"ADT Authorized Installer\";s:4:\"text\";s:51:\"More information coming soon on security systems...\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1654,78,'_yoast_wpseo_focuskw_text_input','security systems'),(1655,78,'_yoast_wpseo_focuskw','security systems'),(1656,78,'_yoast_wpseo_title','Rasbury Technology Solutions | Security Systems | Fort Wayne'),(1657,78,'_yoast_wpseo_metadesc','RTS can install the most comprehensive security systems on the planet. Let RTS secure your valuables with the best technology in security available'),(1658,78,'_yoast_wpseo_linkdex','51'),(1659,481,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"ADT Authorized Installer\";s:4:\"text\";s:51:\"More information coming soon on security systems...\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1660,482,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:24:\"ADT Authorized Installer\";s:4:\"text\";s:51:\"More information coming soon on security systems...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1661,483,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:432;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1662,47,'_yoast_wpseo_focuskw_text_input','telecom'),(1663,47,'_yoast_wpseo_focuskw','telecom'),(1664,47,'_yoast_wpseo_title','Rasbury Technology Solutions | Phone Systems | Fort Wayne'),(1665,47,'_yoast_wpseo_metadesc','RTS knows telecom. Let us install a new phone system that will fulfill all your telecom needs. We use AT&T to bring you an inexpensive all in one solution.'),(1666,47,'_yoast_wpseo_linkdex','77'),(1668,84,'_yoast_wpseo_focuskw_text_input','audio video'),(1669,84,'_yoast_wpseo_focuskw','audio video'),(1670,84,'_yoast_wpseo_title','Rasbury Technology Solutions | Audio / Video | Fort Wayne'),(1671,84,'_yoast_wpseo_metadesc','RTS can handle all your audio video needs. We can plan and install new construction or make an existing install look like it was there from day one'),(1672,84,'_yoast_wpseo_linkdex','62'),(1673,484,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1674,485,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1675,486,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:20:\"ADT Security Systems\";s:4:\"text\";s:51:\"More information coming soon on security systems...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1696,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:140;s:4:\"file\";s:22:\"2017/04/logoimages.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logoimages-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logoimages-300x26.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:26;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"logoimages-768x67.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"logoimages-1024x90.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:22:\"logoimages-700x140.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:22:\"logoimages-650x140.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:22:\"logoimages-350x140.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:20:\"logoimages-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"logoimages-272x140.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1695,496,'_wp_attached_file','2017/04/logoimages.jpg'),(1682,491,'_wp_attached_file','2017/04/cropped-logoimages.png'),(1683,491,'_wp_attachment_context','custom-logo'),(1684,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1481;s:6:\"height\";i:140;s:4:\"file\";s:30:\"2017/04/cropped-logoimages.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-logoimages-300x28.png\";s:5:\"width\";i:300;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"cropped-logoimages-768x73.png\";s:5:\"width\";i:768;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-1024x97.png\";s:5:\"width\";i:1024;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-700x140.png\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-650x140.png\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-350x140.png\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:28:\"cropped-logoimages-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-272x140.png\";s:5:\"width\";i:272;s:6:\"height\";i:140;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:{}}}'),(1685,492,'_wp_attached_file','2017/04/cropped-logoimages-1.png'),(1686,492,'_wp_attachment_context','custom-logo'),(1687,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1473;s:6:\"height\";i:140;s:4:\"file\";s:32:\"2017/04/cropped-logoimages-1.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-logoimages-1-300x29.png\";s:5:\"width\";i:300;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"cropped-logoimages-1-768x73.png\";s:5:\"width\";i:768;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-1024x97.png\";s:5:\"width\";i:1024;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-700x140.png\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-650x140.png\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-350x140.png\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-1-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-272x140.png\";s:5:\"width\";i:272;s:6:\"height\";i:140;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:{}}}'),(1899,607,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:18:\"Captainform_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1690,493,'_wp_attached_file','2017/04/cropped-cropped-logo.jpg'),(1691,493,'_wp_attachment_context','custom-logo'),(1692,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:868;s:6:\"height\";i:125;s:4:\"file\";s:32:\"2017/04/cropped-cropped-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-cropped-logo-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-768x111.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-700x125.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-650x125.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-350x125.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:30:\"cropped-cropped-logo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-272x125.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1697,497,'_wp_attached_file','2017/04/cropped-logoimages.jpg'),(1698,497,'_wp_attachment_context','custom-logo'),(1699,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1476;s:6:\"height\";i:140;s:4:\"file\";s:30:\"2017/04/cropped-logoimages.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-logoimages-300x28.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:28;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"cropped-logoimages-768x73.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:73;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-1024x97.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-700x140.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-650x140.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-350x140.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:28:\"cropped-logoimages-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-272x140.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1702,498,'_wp_attached_file','2017/04/cropped-cropped-logo-1.jpg'),(1703,498,'_wp_attachment_context','custom-logo'),(1704,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:868;s:6:\"height\";i:125;s:4:\"file\";s:34:\"2017/04/cropped-cropped-logo-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-cropped-logo-1-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-768x111.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-700x125.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-650x125.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-350x125.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:32:\"cropped-cropped-logo-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:34:\"cropped-cropped-logo-1-272x125.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1707,500,'_wp_attached_file','2017/04/cropped-logoimages-1.jpg'),(1708,500,'_wp_attachment_context','custom-logo'),(1709,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:485;s:6:\"height\";i:140;s:4:\"file\";s:32:\"2017/04/cropped-logoimages-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-logoimages-1-300x87.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-350x140.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-1-272x140.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1710,501,'_wp_attached_file','2017/04/cropped-logoimages-2.jpg'),(1711,501,'_wp_attachment_context','custom-logo'),(1712,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:710;s:6:\"height\";i:140;s:4:\"file\";s:32:\"2017/04/cropped-logoimages-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-2-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-logoimages-2-300x59.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-2-700x140.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-2-650x140.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-2-350x140.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-2-272x140.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1715,503,'_wp_attached_file','2017/04/cropped-logoimages-3.jpg'),(1716,503,'_wp_attachment_context','custom-logo'),(1717,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:901;s:6:\"height\";i:140;s:4:\"file\";s:32:\"2017/04/cropped-logoimages-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-logoimages-3-300x47.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-768x119.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-700x140.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-650x140.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-350x140.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:30:\"cropped-logoimages-3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:32:\"cropped-logoimages-3-272x140.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1720,506,'_wp_attached_file','2017/04/logo.png'),(1721,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:140;s:4:\"file\";s:16:\"2017/04/logo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x26.png\";s:5:\"width\";i:300;s:6:\"height\";i:26;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"logo-768x67.png\";s:5:\"width\";i:768;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"logo-1024x90.png\";s:5:\"width\";i:1024;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-700x140.png\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-650x140.png\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-350x140.png\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:14:\"logo-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:16:\"logo-272x140.png\";s:5:\"width\";i:272;s:6:\"height\";i:140;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:{}}}'),(1722,507,'_wp_attached_file','2017/04/cropped-logo.png'),(1723,507,'_wp_attachment_context','custom-logo'),(1724,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:140;s:4:\"file\";s:24:\"2017/04/cropped-logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cropped-logo-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-700x140.png\";s:5:\"width\";i:700;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-650x140.png\";s:5:\"width\";i:650;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-350x140.png\";s:5:\"width\";i:350;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:22:\"cropped-logo-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"cropped-logo-272x140.png\";s:5:\"width\";i:272;s:6:\"height\";i:140;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:{}}}'),(1729,508,'_edit_lock','1505779209:1'),(1730,508,'_edit_last','1'),(1731,508,'_wp_page_template','page-templates/full-width-page.php'),(1732,508,'_yoast_wpseo_content_score','60'),(1733,508,'hide_singular_title','0'),(1738,272,'_yst_is_cornerstone',''),(1739,508,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:5:{s:5:\"title\";s:20:\"Phone Marketing Reps\";s:4:\"text\";s:352:\"We are hiring phone marketing reps with the objective of making appointments for our web services sales rep. This position will be commission based on appointments made that purchase a web service. This is a full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:5:{s:5:\"title\";s:22:\"Outside Marketing Reps\";s:4:\"text\";s:419:\"We are hiring outside marketing reps with the objective of making sales and appointments for our web services sales rep. This position will be commission based on appointments made that purchase a web service or a direct sale. This is a full time employment opportunity with no cap on commissions. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:5:{s:5:\"title\";s:15:\"Lead Technician\";s:4:\"text\";s:390:\"We are looking for an experienced lead technician to learn our day-to-day operations. We will train the eligible candidate to service and maintain our IT related calls, phone systems, retail environments, cable installations and security systems. Applicant must have good personal skills and have excellent attention to detail. This is a salaried position with eventual performance bonuses.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"68d1122a-4eee-4fc7-98fc-4517181be2c5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:3;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:120:\"http://www.rasburytech.com/wp-content/plugins/captainform/includes/../public/images/publish_lighbox_default_image_v2.png\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:1:\"1\";s:32:\"captainform_trigger_2_background\";s:6:\"FF0000\";s:27:\"captainform_trigger_2_color\";s:6:\"FFFFFF\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:18:\"Captainform_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1740,514,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1741,514,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1742,515,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1743,513,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1744,516,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:311:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1745,516,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:311:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1746,517,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:311:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1747,513,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:309:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:311:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1748,518,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1749,518,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1750,519,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1751,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1752,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1753,520,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1754,520,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1755,521,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1756,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1757,300,'panels_data','a:3:{s:7:\"widgets\";a:27:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:1;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:13:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:25:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1761,524,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:84:\"<font face=\"arial\" font color=\"#af0e0e\">Increase Sales & Beat The Competition</font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1758,522,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1759,522,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1760,523,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1774,534,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"7\">Increase Sales & Beat The Competition!</font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1762,525,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:112:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"5\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1763,300,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:112:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"5\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1768,529,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:107:\"<font face=\"impact\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1764,526,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:114:\"<font face=\"verdana\" font color=\"#af0e0e\" font size=\"7\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1765,526,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:114:\"<font face=\"verdana\" font color=\"#af0e0e\" font size=\"7\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1766,527,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:114:\"<font face=\"verdana\" font color=\"#af0e0e\" font size=\"7\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1767,528,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:113:\"<font face=\"impact\" font color=\"#af0e0e\" font size=\"7\"><i><b>Increase Sales & Beat The Competition</i></b></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1769,530,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:107:\"<font face=\"tahoma\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1770,531,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:108:\"<font face=\"verdana\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1771,532,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:106:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1772,532,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:106:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1773,533,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:106:\"<font face=\"arial\" font color=\"#af0e0e\" font size=\"7\"><i>Increase Sales & Beat The Competition!</i></font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}');
INSERT INTO `wpiq_postmeta` VALUES (1844,570,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:100:\"<font face=\"impact\" font color=\"#af0e0e\" font size=\"7\">Increase Sales & Beat The Competition!</font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1775,535,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:100:\"<font face=\"impact\" font color=\"#af0e0e\" font size=\"7\">Increase Sales & Beat The Competition!</font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1779,538,'_yst_is_cornerstone',''),(1780,538,'_disabled','TRUE'),(1781,539,'_yst_is_cornerstone',''),(1782,539,'_disabled','0'),(1783,540,'_yst_is_cornerstone',''),(1784,540,'_disabled','0'),(1785,541,'_yst_is_cornerstone',''),(1786,541,'_disabled','TRUE'),(1787,542,'_yst_is_cornerstone',''),(1788,542,'_disabled','0'),(1789,543,'_yst_is_cornerstone',''),(1790,543,'_disabled','TRUE'),(1791,544,'_yst_is_cornerstone',''),(1792,544,'_disabled','TRUE'),(1793,545,'_yst_is_cornerstone',''),(1794,545,'_disabled','0'),(1795,546,'_yst_is_cornerstone',''),(1796,546,'_disabled','0'),(1797,547,'_yst_is_cornerstone',''),(1798,547,'_disabled','0'),(1816,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1817,554,'_wp_attached_file','2017/02/data-recovery.png'),(1818,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:425;s:6:\"height\";i:282;s:4:\"file\";s:25:\"2017/02/data-recovery.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"data-recovery-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"data-recovery-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"data-recovery-350x282.png\";s:5:\"width\";i:350;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:23:\"data-recovery-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"data-recovery-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1819,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1820,241,'panels_data','a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:5:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:9:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1826,558,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1821,555,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:13:{s:5:\"image\";i:554;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1822,555,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:9;a:13:{s:5:\"image\";i:554;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1823,556,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:554;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1824,557,'_wp_attached_file','2017/02/deleted-files-data-recovery.png'),(1825,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:244;s:4:\"file\";s:39:\"2017/02/deleted-files-data-recovery.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"deleted-files-data-recovery-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"deleted-files-data-recovery-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:37:\"deleted-files-data-recovery-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:39:\"deleted-files-data-recovery-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1827,558,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1828,559,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:292;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1829,560,'_wp_attached_file','2017/02/Cat5e-500x554.png'),(1830,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:554;s:4:\"file\";s:25:\"2017/02/Cat5e-500x554.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Cat5e-500x554-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Cat5e-500x554-271x300.png\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"Cat5e-500x554-500x550.png\";s:5:\"width\";i:500;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"Cat5e-500x554-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:23:\"Cat5e-500x554-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"Cat5e-500x554-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;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:{}}}'),(1831,561,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1832,561,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1833,562,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1947,639,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:4:\"grid\";i:0;s:6:\"weight\";i:1;}}}'),(1949,640,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:41:\"http://www.rasburytech.com/teamviewer.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497221077879\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1843,569,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1962,648,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498591851376\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1983,662,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1981,661,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:5:\"image\";i:660;s:14:\"image_fallback\";s:10:\"http://660\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:19:\"_sow_form_timestamp\";s:13:\"1498593288609\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(2036,701,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:26:\"Why Choose ADT Monitoring?\";s:4:\"text\";s:554:\"Your home is protected around‑the‑clock by six interconnected ADT Customer Monitoring Centers. If a sensor is triggered in your home an ADT monitoring dispatch operator will immediately contact you to make sure everything is okay. ADT monitoring will contact and dispatch the proper emergency service for a fast response to help protect your home and family.\n<br><br>\nWith ADT Pulse®, your home is always at your fingertips. Use your smartphone, tablet or computer to manage your home security system from virtually anywhere with an ADT Pulse®plan.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1896,605,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:31:\"captainform_display_as_lightbox\";i:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1846,572,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:41:\"Flir® Technology In Surveillance Cameras\";s:4:\"text\";s:654:\"We only use cameras with FLIR® Technology. It is the highest standard in surveillance cameras regarding resolution, durability and ease of use. All camera systems by FLIR® are fully expandable and have a wide range of products to choose from with excellent warranty support. We can do a site survey and quote a solution that will exceed your expectations.\n<br><br>\nSome features include:\n<br><br>\n• MPX and HD IP<br>\n• 4K Cameras ( 4 x 1080p )<br>\n• Color Night Vision<br>\n• Thermal Imaging<br>\n• Power Over Ethernet (POE)<br>\n• Audio Cameras<br>\n• UL and CMR certified cables<br>\n• Certified Hard Drives<br>\n• Remote FLIR® Cloud App\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"d112d8e5-5515-44e1-a039-51a4bb24e124\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:379;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:46:\"http://www.flir.com/security/content/?id=67507\";s:10:\"new_window\";b:1;s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf437987a9\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3259398f-dba2-452b-8c71-12d77215069d\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:374;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf2d1c44af\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"5d8271dd-b48b-4426-ad23-7767405160c9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf3dc528c1\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"a395937e-03b3-4f27-aaa7-5a1c8a80ec70\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1847,573,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:20:\"ADT Security Systems\";s:4:\"text\";s:51:\"More information coming soon on security systems...\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"769c7995-2cf4-4bc3-9de2-d35d651e9ce3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:388;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58eafa6d439f5\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"b6d6e777-3616-45e8-a3be-17384c20c010\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1848,574,'panels_data','a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:15:\"AT&T Technology\";s:4:\"text\";s:542:\"We only use AT&T for new installations! You may ask why? Well, if you have ever talked to a telecom company and asked for voicemail or another upgrade you have found it to be extremely pricey. With AT&T this is not the case. These systems have all the features built right in. No upgrades, no up selling, it just works.\n<br><br>\nWith AT&T, there are no headaches, hassles or heavy equipment! Since the analog gateway is 1U, it requires minimal office space. Plus, the desksets come standard with dual Ethernet ports-no need for extra cabling!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"83951a2e-5b5c-4d4b-b5ae-354ccd176ebb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:19:\"The AT&T Difference\";s:4:\"text\";s:712:\"<strong>Increase sales</strong>\nRespond to every call now, or later. Built-in voicemail means no more missed calls and no more wasted time!\n<br><br>\n<strong>Give yourself more time</strong>\nFamiliar call handling and a dual-mode auto attendant ensure all calls are handled right the first time. The result: more time to focus on your business!\n<br><br>\n<strong>Improve operations</strong>\nReady to move beyond a small, legacy PBX or key system? With AT&T, there\'s no need to skimp on features to save money.\n<br><br>\n<strong>Grow your business</strong>\nYou can with support for 24 extensions and 8 analog lines - more than enough capacity for your operations today, with plenty of room to expand into the future.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"ede1668a-9e53-406c-ab95-b7914005befb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:13:{s:5:\"image\";i:382;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58eaf5fea358e\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"a87aac1e-2a67-461c-a66b-8ff80aaf5999\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:432;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f52b740ead0\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ea3ccd9d-7e85-40f9-8e51-856fd71b60d7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58eaf8e180671\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"c5c0dade-3304-4dd0-8f34-347754bfb214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1849,575,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1850,243,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1851,243,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:1:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1852,576,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1853,576,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1854,577,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1855,578,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1856,578,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1857,579,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1865,585,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1858,580,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1859,580,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1860,581,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1861,582,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"350\" height=\"350\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1862,583,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1863,583,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1864,584,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}}}'),(1866,586,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1867,586,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1868,587,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1869,243,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"450\" height=\"450\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1870,241,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1871,588,'_wp_attached_file','2017/02/bottomlogos.jpg'),(1872,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:124;s:4:\"file\";s:23:\"2017/02/bottomlogos.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bottomlogos-150x124.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bottomlogos-300x36.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"bottomlogos-768x93.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"bottomlogos-700x124.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:23:\"bottomlogos-650x124.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:23:\"bottomlogos-350x124.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:21:\"bottomlogos-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:23:\"bottomlogos-272x124.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1876,591,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1873,589,'panels_data','a:3:{s:7:\"widgets\";a:12:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:13:{s:5:\"image\";i:588;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5923285588208\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"42de2ff9-d181-480f-906c-3ac793a854fe\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:7:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:6;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:12:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1874,589,'panels_data','a:3:{s:7:\"widgets\";a:12:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:13:{s:5:\"image\";i:588;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5923285588208\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"42de2ff9-d181-480f-906c-3ac793a854fe\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:7:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:6;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:12:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1875,590,'panels_data','a:3:{s:7:\"widgets\";a:12:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:13:{s:5:\"image\";i:588;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5923285588208\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"42de2ff9-d181-480f-906c-3ac793a854fe\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}}s:5:\"grids\";a:7:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:6;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:12:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1877,591,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1878,592,'panels_data','a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:28:\"Over 20 Years of Experience!\";s:4:\"text\";s:595:\"We have been repairing computers for a long time! We remember the days of DOS, that\'s how far we go back. RTS can repair or upgrade any computer you have with our extensive knowledge of all computer hardware and software. Let us be your \"go to\" resource for all your computer needs. We service PC (computer), Apple and Linux based devices including desktops, workstations, thin clients, All In Ones and laptops. Call us today for a free evaluation. We service Acer, Apple, ASUS, Compaq, DELL, eMachines, Fujitsu, Gateway, HP, IBM, Lenovo, Panasonic, Samsung, Sony and Toshiba just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"8694b910-8e08-4c1f-97e4-4481827b236b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:285;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:8:\"20 years\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3befdd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"069df983-eebe-4480-9914-283b9bf241b2\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:20:\"Servers & Networking\";s:4:\"text\";s:356:\"Experts in infrastructure we can guide you on a path of least resistance. We can design and implement all your network driven needs. No matter how many employees we can create a seamless flow of information for you and your staff. We take the guess work out of the digital side of your business and let you focus on the \"meat and potatoes\" of your company.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"8bfcd117-8562-4f7f-9d82-2eef609b5aff\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:294;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:22:\"servers and networking\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab3f2b92a\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"c43cde28-0567-4953-acaa-14d0efe64865\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:23:\"Printer & Copier Repair\";s:4:\"text\";s:482:\"We have been repairing and maintaining printers and copiers for a long time. We have serviced brands like Brother, Canon, DELL, Epson, Fujitsu, Gestetner, Hitachi, HP, IBM, Kodak, Konica Minolta, Kyocera, Lanier, Lexmark, Oce, Okidata, Panasonic, Ricoh, Samsung, Sanyo, Savin, Sharp, Siemens, Toshiba and Xerox. We can give you the best advice on what to buy for your business or home. We can recommend a product that you can grow with or just one that will do the job as requested.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"cd83faa9-d060-4386-81eb-e1f28b1c8abb\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:288;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:25:\"printer and copier repair\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab45d601d\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"ebd396bd-044a-4f28-8634-31d50b3be0cd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:32:\"Cable Installation & Termination\";s:4:\"text\";s:459:\"We know our cables. We have the ability to run cable in your existing location that will look like it was there from day one. We will run the cable requested and terminate all connections. We can supply any color plates you want like almond, white or brown. We also do pre-construction environments. If you are a home or commercial builder we can help coordinate this process for you. With our many years of experience we can be a huge asset to your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"5cb91c35-21c5-491d-9f82-3a8a35955643\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:13:{s:5:\"image\";i:560;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"cable installation\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e1ab4823a95\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"81880746-d3fd-420a-8bde-59dc58da1214\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:13:\"Data Recovery\";s:4:\"text\";s:309:\"Can\'t access your data? We can help. We can retrieve information from traditional hard drives, SSD hard drives, USB drives, flash drives (for cameras) and external hard drives. If you value your data give us a call. You only pay a diagnostic fee if we fail to get your data. We charge $5/GB or the diagnostic.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"e9b62881-ed23-4e9e-acbd-666776c2708e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:13:{s:5:\"image\";i:557;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"59066627bb262\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"ec5a28a1-648f-4fca-bf93-2431ca119c97\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:13:\"On-site Rates\";s:4:\"text\";s:238:\"Commercial On-site = $100/hr\n<br><br>\nResidential On-site = $75/hr\n<br><br>\nCable Installation = $60/hr\n<br><br>\nOn-site hourly charges do not include parts and other misc. materials that may be needed to complete a job unforeseen or not.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"728f8440-e9f9-495f-a8f3-7af82af14c79\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:6:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:5;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}s:10:\"grid_cells\";a:11:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1879,593,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"490\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1880,594,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"400\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1881,594,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"400\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1882,595,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"400\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1883,243,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"400\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1884,243,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:318:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12047.982250751471!2d-85.330179!3d40.981578!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495408703442\" width=\"530\" height=\"400\" frameborder=\"1\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1885,596,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:16:\"On-site Services\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1886,596,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:16:\"On-site Services\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1887,597,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:16:\"On-site Services\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1888,598,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:325:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. We provide computer repair, computer networking, server management, cable installation, printer / copier repair and data recovery.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1894,603,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:255:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1892,601,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:340:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nWe also provide web services like internet marketing, web design and graphic design.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1889,599,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:530:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. We provide computer repair, computer networking, server management, cable installation, printer/copier repair, data recovery, phone systems (telecom), point of sale registers/touchscreens, surveillance cameras, alarm systems and audio/video.\n<br><br>\nWe also provide web services like internet marketing, web design and graphic design.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1890,599,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:530:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. We provide computer repair, computer networking, server management, cable installation, printer/copier repair, data recovery, phone systems (telecom), point of sale registers/touchscreens, surveillance cameras, alarm systems and audio/video.\n<br><br>\nWe also provide web services like internet marketing, web design and graphic design.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1891,600,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software ans hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:530:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. We provide computer repair, computer networking, server management, cable installation, printer/copier repair, data recovery, phone systems (telecom), point of sale registers/touchscreens, surveillance cameras, alarm systems and audio/video.\n<br><br>\nWe also provide web services like internet marketing, web design and graphic design.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1893,602,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:314:\"RTS can handle every aspect of your businesses technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:340:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nWe also provide web services like internet marketing, web design and graphic design.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1897,605,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:31:\"captainform_display_as_lightbox\";i:0;}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1898,606,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:0;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:0:\"\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:0:\"\";s:32:\"captainform_trigger_2_background\";s:0:\"\";s:27:\"captainform_trigger_2_color\";s:0:\"\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}}}'),(1900,608,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:3;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:120:\"http://www.rasburytech.com/wp-content/plugins/captainform/includes/../public/images/publish_lighbox_default_image_v2.png\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:1:\"1\";s:32:\"captainform_trigger_2_background\";s:6:\"FF0000\";s:27:\"captainform_trigger_2_color\";s:6:\"FFFFFF\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:1;s:11:\"panels_info\";a:6:{s:5:\"class\";s:18:\"Captainform_Widget\";s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1901,609,'panels_data','a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:19:\"Phone Marketing Rep\";s:4:\"text\";s:376:\"We are hiring a phone marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have good phone skills and attitude.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"1eaf0e17-b5c3-4626-b147-10558444f99b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:21:\"Outside Marketing Rep\";s:4:\"text\";s:390:\"We are hiring a outside marketing rep position with the objective of making appointments for our web services sales rep. This position will be hourly + commission on appointments made that purchase a web service. Part time leading to full time employment opportunity. Apply to the right by filling out the form. No experience necessary. Must have valid drivers license. Mileage reimbursed. \";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f096611c-d7b1-424f-bec4-8c923b1831c1\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:14:{s:19:\"captainform_form_id\";i:806157;s:28:\"captainform_selected_trigger\";i:3;s:26:\"captainform_trigger_0_text\";s:0:\"\";s:25:\"captainform_trigger_1_url\";s:120:\"http://www.rasburytech.com/wp-content/plugins/captainform/includes/../public/images/publish_lighbox_default_image_v2.png\";s:26:\"captainform_trigger_2_text\";s:0:\"\";s:30:\"captainform_trigger_2_position\";s:1:\"1\";s:32:\"captainform_trigger_2_background\";s:6:\"FF0000\";s:27:\"captainform_trigger_2_color\";s:6:\"FFFFFF\";s:30:\"captainform_auto_popup_trigger\";s:1:\"1\";s:27:\"captainform_trigger_3_after\";i:3;s:33:\"captainform_lightbox_publish_code\";s:0:\"\";s:28:\"captainform_custom_vars_name\";s:0:\"\";s:31:\"captainform_display_as_lightbox\";i:1;s:11:\"panels_info\";a:7:{s:5:\"class\";s:18:\"Captainform_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"b90c1e25-4788-4302-88f7-de2251f89067\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1903,610,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:255:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1904,611,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:255:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1959,647,'_wp_attached_file','2017/02/cinema-room-2.jpg'),(1907,613,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:546:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nRTS is experts at computer repair, printer repair, copier repair, servers, cable installation, cable termination, point of sale, touchscreens, thermal printers, cash drawers and POS software. We also have a list of internet marketing plans to choose from to help your digital identity grow.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1908,614,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:547:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nRTS are experts at computer repair, printer repair, copier repair, servers, cable installation, cable termination, point of sale, touchscreens, thermal printers, cash drawers and POS software. We also have a list of internet marketing plans to choose from to help your digital identity grow.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1909,614,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:547:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nRTS are experts at computer repair, printer repair, copier repair, servers, cable installation, cable termination, point of sale, touchscreens, thermal printers, cash drawers and POS software. We also have a list of internet marketing plans to choose from to help your digital identity grow.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";b:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1910,615,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:38:\"Serving the Fort Wayne area since 1996\";s:4:\"text\";s:313:\"RTS can handle every aspect of your business\' technology needs. With years of experience with servers, workstations, networking, cable installation, web design, internet marketing, POS software and hardware, surveillance cameras, telecom (phone systems) and audio / video we can be your total technology solution.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"cc416e36-fb62-4e52-b502-a800415f41cc\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:18:\"The RTS Difference\";s:4:\"text\";s:317:\"Here at RTS we value our customers and want them to succeed in whatever they do. This is part of our mission. We want to handle all of your technology needs so you can focus on the \"meat and potatoes\" of your business. We want you to have more time to make money instead of struggling with your day to day operations.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"71f57b27-7013-4508-961e-93bf82a59ee4\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:18:\"Base of Operations\";s:4:\"text\";s:547:\"RTS has on-site services for commercial, industrial and retail clients. We service a radius of approx. 60 miles around Fort Wayne but will make considerations for work outside this service area. Let us help you get your business running smoothly.\n<br><br>\nRTS are experts at computer repair, printer repair, copier repair, servers, cable installation, cable termination, point of sale, touchscreens, thermal printers, cash drawers and POS software. We also have a list of internet marketing plans to choose from to help your digital identity grow.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"9611e2de-b657-46f7-92b8-3a7202e68b29\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:334:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d192471.5814750596!2d-85.23992715914896!3d41.082795414810946!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd636d698f7ba1e5!2sRasbury+Technology+Solutions!5e0!3m2!1sen!2sus!4v1495477319394\" width=\"500\" height=\"400\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"ef0ec531-4c0f-495b-a9ab-3b202e46a53f\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:3:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}}}'),(1944,628,'hide_singular_title','1'),(1945,628,'dojodigital_toggle_title','on'),(1950,641,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:41:\"http://www.rasburytech.com/teamviewer.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497221077879\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1952,643,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:23:\"Initiate Remote Session\";s:3:\"url\";s:43:\"http://www.rasburytech.com/TeamViewerQS.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497222083176\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1953,643,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:23:\"Initiate Remote Session\";s:3:\"url\";s:43:\"http://www.rasburytech.com/TeamViewerQS.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497222083176\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1954,644,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:23:\"Initiate Remote Session\";s:3:\"url\";s:43:\"http://www.rasburytech.com/TeamViewerQS.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497222083176\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1955,645,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:102:\"Call (260) 492-2166 to initiate a remote assistance session.\n\nOnce instructed, click the button below.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:23:\"Initiate Remote Session\";s:3:\"url\";s:43:\"http://www.rasburytech.com/TeamViewerQS.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497222083176\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1956,508,'_yoast_wpseo_focuskw_text_input','job opportunities'),(1957,508,'_yoast_wpseo_focuskw','job opportunities'),(1958,508,'_yoast_wpseo_linkdex','45'),(1960,647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:525;s:4:\"file\";s:25:\"2017/02/cinema-room-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-768x336.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"cinema-room-2-1024x448.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-700x525.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-650x525.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:23:\"cinema-room-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"cinema-room-2-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1961,419,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1951,642,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:41:\"http://www.rasburytech.com/teamviewer.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";s:5:\"hover\";b:0;}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497221169707\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1937,628,'_edit_last','1'),(1938,628,'_wp_page_template','page-templates/full-width-page.php'),(1948,640,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:60:\"Call (260) 492-2166 to initiate a remote assistance session.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"26ea6fcd-1d08-418f-99f7-bcdb99ce0673\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:9:{s:4:\"text\";s:0:\"\";s:3:\"url\";s:41:\"http://www.rasburytech.com/teamviewer.exe\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:26:\"fontawesome-cloud-download\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:6:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"593dc73755905\";s:19:\"_sow_form_timestamp\";s:13:\"1497221077879\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"9ed5c3b9-05a4-48fe-9a87-0dc09edba807\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:2:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1936,628,'_edit_lock','1505436720:1'),(1964,649,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:0:\"\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498591851376\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1969,653,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592360385\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1965,650,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498591851376\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1966,651,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592360385\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1967,651,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592360385\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1968,652,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:647;s:14:\"image_fallback\";s:10:\"http://647\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592360385\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1970,654,'_wp_attached_file','2017/02/loft-cinema-conversion.jpg'),(1971,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:779;s:4:\"file\";s:34:\"2017/02/loft-cinema-conversion.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"loft-cinema-conversion-1024x665.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:32:\"loft-cinema-conversion-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:34:\"loft-cinema-conversion-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,655,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1973,655,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1974,656,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:10:\"new_window\";b:0;}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.5;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1975,657,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1976,658,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1977,658,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1978,659,'panels_data','a:3:{s:7:\"widgets\";a:8:{i:0;a:4:{s:5:\"title\";s:13:\"What We Do...\";s:4:\"text\";s:377:\"RTS can make your audio / video dreams a reality. With cinema, music, home automation, light control and ambient LEDs we can bring your experience to a whole new level. We can design and install any equipment that will give you a stunning multimedia experience. We have resources for cinema extras as well. If you need cinema furniture to a popcorn machine we have you covered.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"613a025f-d282-4a1a-b4cf-3b0ee4263735\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:14:{s:5:\"image\";i:654;s:14:\"image_fallback\";s:10:\"http://654\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"5952b2628311b\";s:19:\"_sow_form_timestamp\";s:13:\"1498592577324\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:1;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"f4da3903-693f-40b3-a4da-2dbdd8e0e0d3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:36:\"Commercial & Residential Audio Video\";s:4:\"text\";s:330:\"Yamaha is one of the most well known companies in quality commercial and residential audio video equipment. With years of experience Yamaha is nothing short of having amazing quality in sound and equipment choice. Whether you need a professional studio designed and installed or a whole home audio solution Yamaha has you covered.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"84aced22-d991-4342-8243-9de460757e6c\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:13:{s:5:\"image\";i:416;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:6:\"Yamaha\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f520b021e86\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"fcf53367-4e54-4bd5-97da-044bbac55f4b\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:24:\"Wireless Multiroom Audio\";s:4:\"text\";s:257:\"Now Yamaha makes it easy to bring music to every room in your home wirelessly. Whether you start with a single speaker or the ultimate home theater, MusicCast expands to fit your needs, providing wireless multiroom audio playback controlled by a simple app.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"f6c22eeb-db28-4a9b-81f3-3984f7cfb4ab\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:13:{s:5:\"image\";i:420;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f525633e19f\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"08e690ef-0fc7-4669-ae70-ed2a0fadc674\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:8:{s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:35:\"http://www.yamaha.com/US/MusicCast/\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52946b8839\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"3d91efca-89fe-477a-9bd8-ccf66005149f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f52a2262728\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"64fe72e6-0834-418e-b326-45a1bdf1e745\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:4:{i:0;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:3;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}}s:10:\"grid_cells\";a:7:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}}}'),(1979,660,'_wp_attached_file','2017/02/surveillance-cameras-atlanta.jpg'),(1980,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1431;s:6:\"height\";i:892;s:4:\"file\";s:40:\"2017/02/surveillance-cameras-atlanta.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-768x479.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"surveillance-cameras-atlanta-1024x638.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"rock-n-rolla-featured-thumbnail\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-700x550.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"rock-n-rolla-mobile-post-thumbnail\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"rock-n-rolla-medium-thumbnail\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rock-n-rolla-widget-post-thumb\";a:4:{s:4:\"file\";s:38:\"surveillance-cameras-atlanta-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:40:\"surveillance-cameras-atlanta-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1982,300,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:100:\"<font face=\"impact\" font color=\"#af0e0e\" font size=\"7\">Increase Sales & Beat The Competition!</font>\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1984,662,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1985,663,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:470:\"Why Should You Have RTS Build Your Site?\n<br><br>\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1986,664,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1987,664,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1988,665,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1995,670,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1989,666,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:252:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption.</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1990,666,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:252:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption.</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1991,667,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:252:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption.</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1992,668,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1993,668,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1994,669,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1996,670,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:0:\"\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1997,671,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:0:\"\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1998,672,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(1999,672,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2000,673,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:2:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2004,676,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:117:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}');
INSERT INTO `wpiq_postmeta` VALUES (2001,674,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2002,674,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2003,675,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\n\n<b><span style=\"color: green; font-family: arial; font-size: x-large;\">This site is completely secure with SSL encryption</span></b>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:18:\"text-align: center\";s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:3:{s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2005,676,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:117:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}s:6:\"filter\";s:7:\"content\";}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58f534a466cd4\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:24;s:9:\"widget_id\";s:36:\"f3359eec-ac72-4c5a-88d0-592fc07a394f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:25;a:4:{s:5:\"title\";s:17:\"Domains & Hosting\";s:4:\"text\";s:215:\"We direct all of our customers to buy domains and hosting through our partner InMotion Hosting. We have had a strong relationship with them since 2004 and their customer support is by far the best we have ever seen.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:25;s:9:\"widget_id\";s:36:\"1e8b9ad5-d06b-48a1-8993-63a3423a2306\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:26;a:8:{s:4:\"text\";s:58:\"Click here for domains &amp; hosting with InMotion Hosting\";s:3:\"url\";s:76:\"https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=rasburytech\";s:10:\"new_window\";b:1;s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;s:10:\"width_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:5:\"theme\";s:4:\"atom\";s:12:\"button_color\";s:7:\"#af0e0e\";s:10:\"text_color\";b:0;s:5:\"hover\";b:1;s:4:\"font\";s:7:\"default\";s:9:\"font_size\";s:1:\"1\";s:8:\"rounding\";s:4:\"0.25\";s:7:\"padding\";s:1:\"1\";s:24:\"so_field_container_state\";s:4:\"open\";}s:10:\"attributes\";a:5:{s:2:\"id\";s:0:\"\";s:7:\"classes\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"onclick\";s:0:\"\";s:24:\"so_field_container_state\";s:6:\"closed\";}s:12:\"_sow_form_id\";s:13:\"58e59122e64c2\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:31:\"SiteOrigin_Widget_Button_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:0;s:2:\"id\";i:26;s:9:\"widget_id\";s:36:\"3bb95c65-ce5f-4c1a-b60b-b505a4ccd57e\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:27;a:13:{s:5:\"image\";i:304;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:19:\"hosting and domains\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e46e774eff2\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:13;s:4:\"cell\";i:1;s:2:\"id\";i:27;s:9:\"widget_id\";s:36:\"7dcde0d1-17e3-40c1-844c-cf8addd7bf46\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}}s:5:\"grids\";a:14:{i:0;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:0:{}}i:1;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:2;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:3;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:4;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:5;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:6;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:7;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:8;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:9;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:10;a:2:{s:5:\"cells\";i:1;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:11;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}i:12;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:2:{s:18:\"background_display\";s:4:\"tile\";s:14:\"cell_alignment\";s:10:\"flex-start\";}}i:13;a:2:{s:5:\"cells\";i:2;s:5:\"style\";a:0:{}}}s:10:\"grid_cells\";a:26:{i:0;a:4:{s:4:\"grid\";i:0;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:1;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:0;s:6:\"weight\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"style\";a:0:{}}i:2;a:4:{s:4:\"grid\";i:1;s:5:\"index\";i:1;s:6:\"weight\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"style\";a:0:{}}i:3;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:4;a:4:{s:4:\"grid\";i:2;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:5;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:6;a:4:{s:4:\"grid\";i:3;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:7;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:8;a:4:{s:4:\"grid\";i:4;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:9;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:10;a:4:{s:4:\"grid\";i:5;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:11;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:12;a:4:{s:4:\"grid\";i:6;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:13;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:14;a:4:{s:4:\"grid\";i:7;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:15;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:16;a:4:{s:4:\"grid\";i:8;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:17;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:18;a:4:{s:4:\"grid\";i:9;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:19;a:4:{s:4:\"grid\";i:10;s:5:\"index\";i:0;s:6:\"weight\";i:1;s:5:\"style\";a:0:{}}i:20;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:21;a:4:{s:4:\"grid\";i:11;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:22;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:23;a:4:{s:4:\"grid\";i:12;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}i:24;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:0;s:6:\"weight\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"style\";a:0:{}}i:25;a:4:{s:4:\"grid\";i:13;s:5:\"index\";i:1;s:6:\"weight\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"style\";a:0:{}}}}'),(2006,677,'panels_data','a:3:{s:7:\"widgets\";a:28:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:117:\"<span style=\"color: #af0e0e; font-family: impact; font-size: 300%;\">Increase Sales &amp; Beat The Competition!</span>\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:6:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:4:\"grid\";i:0;s:4:\"cell\";i:0;s:2:\"id\";i:0;s:9:\"widget_id\";s:36:\"c32c456f-cddf-4e63-9985-3d81740944d4\";s:5:\"style\";a:3:{s:10:\"widget_css\";s:18:\"text-align: center\";s:27:\"background_image_attachment\";b:0;s:18:\"background_display\";s:4:\"tile\";}}}i:1;a:4:{s:5:\"title\";s:12:\"Google Local\";s:4:\"text\";s:420:\"This service is the bedrock of your online identity. If you are not on Google local you are missing a huge opportunity to gain more customers and increase your sales. We setup and verify your Google local listing and also provide you with a Google review procedure and template for your review process. These reviews bring importance and relevance to your site that Google likes and in turn moves you up in the rankings.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:0;s:2:\"id\";i:1;s:9:\"widget_id\";s:36:\"3e330135-0c63-4a16-a6b2-30994893d704\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:2;a:4:{s:5:\"title\";s:12:\"$199.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Google Local\" amount=\"googlelocal\" label=\"Buy Now\"]\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:1;s:4:\"cell\";i:1;s:2:\"id\";i:2;s:9:\"widget_id\";s:36:\"4f66dc00-0437-465c-85ee-7b5480587e5f\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:3;a:4:{s:5:\"title\";s:11:\"Local Blast\";s:4:\"text\";s:492:\"This service takes your local presence to a whole new level. We blast your digital presence to all the top local search engines and directories. If your looking for a solution that propels your online visibility across the internet, this is it! For example, we list you on Google, Bing, Yahoo, AOL and many other top search engines. We also list you on several of the top directories like Mapquest, Yelp, Citysearch, Superpages, insiderpages, MerchantCircle and Foursquare just to name a few.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:0;s:2:\"id\";i:3;s:9:\"widget_id\";s:36:\"3006acf3-338d-4032-8a04-e3969681f446\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:4;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Local Blast\" amount=\"localblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:2;s:4:\"cell\";i:1;s:2:\"id\";i:4;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:5;a:4:{s:5:\"title\";s:13:\"Keyword Basic\";s:4:\"text\";s:478:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">2</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:0;s:2:\"id\";i:5;s:9:\"widget_id\";s:36:\"db9de27d-499a-4181-8646-bd610a595ab5\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:6;a:4:{s:5:\"title\";s:12:\"$249.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Basic\" amount=\"keywordbasic\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:3;s:4:\"cell\";i:1;s:2:\"id\";i:6;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:7;a:4:{s:5:\"title\";s:13:\"Keyword Blast\";s:4:\"text\";s:584:\"Our keyword services are the best and most targeted way to reach people who are actually searching for what goods or services you provide. We focus on long-tail keywords that target your specific audience online. By providing us with your top <b><font color=\"#b8df14\">5</font></b> phrases (long-tail keywords) we are able to increase your websites visibility for those searches online. This provides more opportunity for an increase in sales as a result of increased visibility. <i>*With this service we also throw in a high PR backlink program to elevate your website\'s pagerank</i>.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:0;s:2:\"id\";i:7;s:9:\"widget_id\";s:36:\"29a7b5fb-cbf7-431c-a545-9f897434c9a7\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:8;a:4:{s:5:\"title\";s:12:\"$499.99 / mo\";s:4:\"text\";s:98:\"[direct-stripe type=\"subscription\" name=\"RTS Keyword Blast\" amount=\"keywordblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:4;s:4:\"cell\";i:1;s:2:\"id\";i:8;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:9;a:4:{s:5:\"title\";s:9:\"Mega Pack\";s:4:\"text\";s:462:\"This service is a combination of our Local Blast and Keyword Blast services. We have combined these 2 services to bring you a total online solution that is sure to catapult your business online. By combining these services you save $100/mo. If your looking to make a noticeable difference and increase sales for your business then this is definitely the service you want to purchase. This is probably our most common service for small to medium sized businesses.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:0;s:2:\"id\";i:9;s:9:\"widget_id\";s:36:\"28766477-822c-42ca-9f4a-e80abe31f6bd\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:10;a:4:{s:5:\"title\";s:12:\"$799.99 / mo\";s:4:\"text\";s:90:\"[direct-stripe type=\"subscription\" name=\"RTS Mega Pack\" amount=\"megapack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:5;s:4:\"cell\";i:1;s:2:\"id\";i:10;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:11;a:4:{s:5:\"title\";s:15:\"Domination Pack\";s:4:\"text\";s:354:\"The name says it all. If you want to dominate your competition and increase sales dramatically then this is the service for you! This is basically the Mega Pack service with a few extra bells and whistles that makes it the Mount Everest of online marketing campaigns. We guarantee a Google page 1 ranking within 6 months! Dominate your competition today!\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:0;s:2:\"id\";i:11;s:9:\"widget_id\";s:36:\"1d9f7b9e-c9e7-4c6e-9f08-39b2a912b93a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:12;a:4:{s:5:\"title\";s:12:\"$999.99 / mo\";s:4:\"text\";s:102:\"[direct-stripe type=\"subscription\" name=\"RTS Domination Pack\" amount=\"dominationpack\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:6;s:4:\"cell\";i:1;s:2:\"id\";i:12;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:13;a:4:{s:5:\"title\";s:14:\"Google Adwords\";s:4:\"text\";s:542:\"In a nutshell, AdWords is Google\'s paid advertising product. ... Those are AdWords ads that a company paid for so that people will notice their business whenever they\'re searching Google. And, they only have to pay whenever someone clicks on the ad. This is known as cost-per-click advertising (CPC). We will setup your Adwords account and setup up to 10 researched keywords. This a great way for a new business to get immediate exposure online. Our monthly charge does not include budgets and charges incurred in your Google Adwords account.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:0;s:2:\"id\";i:13;s:9:\"widget_id\";s:36:\"90364de4-a508-4669-aae8-207a46bb5883\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:14;a:4:{s:5:\"title\";s:11:\"$99.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Google Adwords\" amount=\"adwords\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:7;s:4:\"cell\";i:1;s:2:\"id\";i:14;s:9:\"widget_id\";s:36:\"a2e9c1b9-4b52-4b32-ad48-390b323df7e3\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:15;a:4:{s:5:\"title\";s:11:\"Social Lite\";s:4:\"text\";s:311:\"<i><b>MODERATE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:0;s:2:\"id\";i:15;s:9:\"widget_id\";s:36:\"8af33190-8b0a-458c-af66-fed4c4234354\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:16;a:4:{s:5:\"title\";s:12:\"$399.99 / mo\";s:4:\"text\";s:94:\"[direct-stripe type=\"subscription\" name=\"RTS Social Lite\" amount=\"sociallite\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:8;s:4:\"cell\";i:1;s:2:\"id\";i:16;s:9:\"widget_id\";s:36:\"8716f567-eeb4-4a30-8eda-8721397c9d49\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:17;a:4:{s:5:\"title\";s:12:\"Social Blast\";s:4:\"text\";s:313:\"<i><b>AGGRESSIVE</b></i> - advertising through social media, we leverage social media platforms to connect your product or service to thousands of people. We use highly targeted methods of social media advertising that allow our clients to pinpoint their exact demographic and reach them for effective engagement.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:0;s:2:\"id\";i:17;s:9:\"widget_id\";s:36:\"4a10a3d2-ebce-458d-805c-0e9157668113\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:18;a:4:{s:5:\"title\";s:12:\"$699.99 / mo\";s:4:\"text\";s:96:\"[direct-stripe type=\"subscription\" name=\"RTS Social Blast\" amount=\"socialblast\" label=\"Buy Now\"]\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:9;s:4:\"cell\";i:1;s:2:\"id\";i:18;s:9:\"widget_id\";s:36:\"f6e96600-c646-490f-8756-79ac7036e40a\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:19;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:133:\"These are subscription services and will be billed monthly for a duration of no shorter than 6 months to achieve the desired results.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:10;s:4:\"cell\";i:0;s:2:\"id\";i:19;s:9:\"widget_id\";s:36:\"0d874744-9460-4662-a918-34bf90937537\";s:5:\"style\";a:2:{s:10:\"widget_css\";s:19:\"text-align: center;\";s:18:\"background_display\";s:4:\"tile\";}}}i:20;a:4:{s:5:\"title\";s:18:\"Internet Marketing\";s:4:\"text\";s:1525:\"New business? Existing business? We can help you create an online presence or blast your existing digital identity to the top of the search engines. With our proven internet marketing methods and algorithm research we can improve your search engine rankings for given keywords. We also have the ability with our local marketing and review campaigns to boost your Google local results as well. For all of our plans below we recommend at least a 6 month duration to achieve the desired results.<br>\n<br>\nThere are 3 kinds of SEO and marketing.<br>\n<br>\nBLACK HAT - This is the type of SEO and marketing that can be considered spam. It can be effective in the short term but will get you banned from sites and hurt your rankings online.<br>\n<br>\nGREY HAT - This type of SEO or marketing is probably the most common. It is considered \"pay to play\". This includes companies that list your site on several high ranking pages to increase your visibility or use PPC (pay per click) websites where you bid on keywords. This is effective but none of it is permanent and when you stop paying it all goes away.<br>\n<br>\nWHITE HAT - This type of SEO or marketing yields the most desirable results. It may take a little longer to achieve the desired results but has a long lasting effect reflected in your online rankings. When you stop paying your results will last for a long time.<br>\n<br>\nOur main focus is WHITE HAT SEO and marketing. We do some PPC campaigns but we do not rely on long term results by using \"pay per click\" programs.\";s:6:\"filter\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:0;s:2:\"id\";i:20;s:9:\"widget_id\";s:36:\"36ea845d-47f5-414a-bc80-3ac1952e35f9\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:21;a:13:{s:5:\"image\";i:299;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:18:\"internet marketing\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:10:\"full_width\";b:1;s:12:\"_sow_form_id\";s:13:\"58e466a767244\";s:10:\"new_window\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:11;s:4:\"cell\";i:1;s:2:\"id\";i:21;s:9:\"widget_id\";s:36:\"732c76f4-7c22-4c84-ab3c-20abdaa47f89\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:22;a:4:{s:5:\"title\";s:35:\"Functional and Beautiful Web Design\";s:4:\"text\";s:505:\"Why Should You Have RTS Build Your Site?\n\n\nWe deploy the most current technologies available when building a website and we build them in a way that they are never out of date! Say goodbye to browser and mobile device incompatibilities. We can implement anything into a website. Plus the websites we build look AWESOME! Web design is in our DNA! This is why we are #1. Look no further if you want a no hassle approach to a total online solution for your business. Our rate for custom web design is $50/hr.\";s:6:\"filter\";s:7:\"content\";s:11:\"panels_info\";a:7:{s:5:\"class\";s:14:\"WP_Widget_Text\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:0;s:2:\"id\";i:22;s:9:\"widget_id\";s:36:\"a453d4c1-5d62-4128-a2c9-18dd687492c8\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:23;a:13:{s:5:\"image\";i:445;s:14:\"image_fallback\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:5:\"title\";s:0:\"\";s:14:\"title_position\";s:6:\"hidden\";s:3:\"alt\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"bound\";b:1;s:12:\"_sow_form_id\";s:13:\"58f5365d38009\";s:10:\"new_window\";b:0;s:10:\"full_width\";b:0;s:11:\"panels_info\";a:7:{s:5:\"class\";s:30:\"SiteOrigin_Widget_Image_Widget\";s:3:\"raw\";b:0;s:4:\"grid\";i:12;s:4:\"cell\";i:1;s:2:\"id\";i:23;s:9:\"widget_id\";s:36:\"6630b41b-6e3a-41b3-af18-aa4fcea400aa\";s:5:\"style\";a:1:{s:18:\"background_display\";s:4:\"tile\";}}}i:24;a:8:{s:4:\"text\";s:15:\"Request A Quote\";s:3:\"url\";s:9:\"post: 274\";s:11:\"button_icon\";a:4:{s:13:\"icon_selected\";s:0:\"\";s:10:\"icon_color\";b:0;s:4:\"icon\";i:0;s:24:\"so_field_container_state\";s:4:\"open\";}s:6:\"design\";a:12:{s:5:\"width\";b:0;